filter students

This commit is contained in:
2022-12-05 04:12:09 +01:00
parent 54014321db
commit 563e8c4c62
242 changed files with 51221 additions and 41 deletions
README.md
app
crispy_forms
LICENSELICENSE.txt__init__.pybase.pybootstrap.pyexceptions.pyhelper.pylayout.pylayout_slice.py
templates
templatetags
utils.py
puchar
requirements.txt
tinymce
LICENSE.txt__init__.pycompressor.pymodels.pysettings.py
static
django_tinymce
tinymce
icons
jquery.tinymce.min.js
langs
license.txt
plugins
skins
themes
tinymce.d.tstinymce.min.js
templates
urls.pyviews.pywidgets.py

@ -0,0 +1,14 @@
{% if field.is_hidden %}
{{ field }}
{% else %}
<div id="div_{{ field.auto_id }}" class="form-group{% if 'form-horizontal' in form_class %} row{% endif %}{% if wrapper_class %} {{ wrapper_class }}{% endif %}{% if field.css_classes %} {{ field.css_classes }}{% endif %}">
{% if field.label %}
<label {% if field.id_for_label %}for="{{ field.id_for_label }}" {% endif %}class="{{ label_class }}{% if not inline_class %} col-form-label{% endif %}{% if field.field.required %} requiredField{% endif %}">
{{ field.label }}{% if field.field.required %}<span class="asteriskField">*</span>{% endif %}
</label>
{% endif %}
{% include 'bootstrap4/layout/radioselect.html' %}
</div>
{% endif %}