Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

invitation form displays "None" when first displayed #57

Merged
merged 2 commits into from
Jan 16, 2017

Commits on Dec 8, 2016

  1. invitation form displays "None" when first displayed

    to fix, just initialize the form:
    
    in the file (rev 1.8)
    
    /invitaitons/forms.py
    
    line 51
    ` widget=forms.TextInput(attrs={"type": "email", "size": "30"}))`
    
    replace with 
            
    ```
    widget=forms.TextInput(attrs={"type": "email", "size": "30"}, ),
            initial=""
            )
    ```
    bedros committed Dec 8, 2016
    Configuration menu
    Copy the full SHA
    c6d0354 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2016

  1. flake8

    bee-keeper committed Dec 15, 2016
    Configuration menu
    Copy the full SHA
    ae2dd48 View commit details
    Browse the repository at this point in the history