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
14
allauthdemo/templates/bootstrap3/layout/checkboxselectmultiple_inline.html
Executable file
14
allauthdemo/templates/bootstrap3/layout/checkboxselectmultiple_inline.html
Executable file
|
@ -0,0 +1,14 @@
|
|||
{% if field.is_hidden %}
|
||||
{{ field }}
|
||||
{% else %}
|
||||
<div id="div_{{ field.auto_id }}" class="form-group{% if form_show_errors and field.errors %} has-error{% endif %}{% if field.css_classes %} {{ field.css_classes }}{% endif %}">
|
||||
|
||||
{% if field.label %}
|
||||
<label for="{{ field.auto_id }}" class="control-label {{ label_class }}{% if field.field.required %} requiredField{% endif %}">
|
||||
{{ field.label|safe }}{% if field.field.required %}<span class="asteriskField">*</span>{% endif %}
|
||||
</label>
|
||||
{% endif %}
|
||||
|
||||
{% include 'bootstrap3/layout/checkboxselectmultiple.html' %}
|
||||
</div>
|
||||
{% endif %}
|
Reference in a new issue