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
8
allauthdemo/templates/bootstrap3/errors.html
Executable file
8
allauthdemo/templates/bootstrap3/errors.html
Executable file
|
@ -0,0 +1,8 @@
|
|||
{% if form.non_field_errors %}
|
||||
<div class="alert alert-block alert-danger">
|
||||
{% if form_error_title %}<h4 class="alert-heading">{{ form_error_title }}</h4>{% endif %}
|
||||
<ul>
|
||||
{{ form.non_field_errors|unordered_list }}
|
||||
</ul>
|
||||
</div>
|
||||
{% endif %}
|
Reference in a new issue