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
13
allauthdemo/templates/bootstrap3/layout/help_text_and_errors.html
Executable file
13
allauthdemo/templates/bootstrap3/layout/help_text_and_errors.html
Executable file
|
@ -0,0 +1,13 @@
|
|||
{% if help_text_inline and not error_text_inline %}
|
||||
{% include 'bootstrap3/layout/help_text.html' %}
|
||||
{% endif %}
|
||||
|
||||
{% if error_text_inline %}
|
||||
{% include 'bootstrap3/layout/field_errors.html' %}
|
||||
{% else %}
|
||||
{% include 'bootstrap3/layout/field_errors_block.html' %}
|
||||
{% endif %}
|
||||
|
||||
{% if not help_text_inline %}
|
||||
{% include 'bootstrap3/layout/help_text.html' %}
|
||||
{% endif %}
|
Reference in a new issue