Last active
May 28, 2018 08:16
-
-
Save jbbarth/3912b82fc54445286fe5e8ac8a591fef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p> | |
{{ form.name.errors }} | |
<label for=id_name>Name:</label> | |
{{ form.name }} | |
</p> | |
<p> | |
{{ form.is_captain.errors }} | |
<label for=id_is_captain>Is Captain?:</label> | |
{% if user %} | |
<input type=checkbox name=is_captain id=id_is_captain {% if object.is_captain %}checked{% endif %}> | |
{% else %} | |
{{ object.is_captain|yesno:"Yes,No" }} <i>(must be admin to edit)</i> | |
{% endif %} | |
</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment