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