Initial commit of DEMOS2 with the upgraded 'Create Event' UI. However, there is no input validation currently
This commit is contained in:
commit
7084bd1b16
155 changed files with 8102 additions and 0 deletions
5
allauthdemo/templates/bootstrap3/layout/field_errors.html
Executable file
5
allauthdemo/templates/bootstrap3/layout/field_errors.html
Executable file
|
@ -0,0 +1,5 @@
|
|||
{% if form_show_errors and field.errors %}
|
||||
{% for error in field.errors %}
|
||||
<span id="error_{{ forloop.counter }}_{{ field.auto_id }}" class="help-block"><strong>{{ error }}</strong></span>
|
||||
{% endfor %}
|
||||
{% endif %}
|
Reference in a new issue