mirror of
https://github.com/DarkflameUniverse/NexusDashboard.git
synced 2024-11-10 03:58:20 +00:00
57 lines
2.2 KiB
Plaintext
57 lines
2.2 KiB
Plaintext
|
{% macro render_field(field, label=None, label_visible=true, right_url=None, right_label=None) -%}
|
||
|
<div class="form-group {% if field.errors %}has-error{% endif %} {{ kwargs.pop('class_', '') }}">
|
||
|
{% if field.type != 'HiddenField' and label_visible %}
|
||
|
{% if not label %}{% set label=field.label.text %}{% endif %}
|
||
|
<label for="{{ field.id }}" class="control-label">{{ label|safe }}</label>
|
||
|
{% endif %}
|
||
|
{{ field(class_='form-control', **kwargs) }}
|
||
|
{% if field.errors %}
|
||
|
{% for e in field.errors %}
|
||
|
<p class="help-block text-danger">{{ e }}</p>
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
{%- endmacro %}
|
||
|
|
||
|
{% macro render_checkbox_field(field, label=None) -%}
|
||
|
{% if not label %}{% set label=field.label.text %}{% endif %}
|
||
|
<div class="checkbox">
|
||
|
<label>
|
||
|
{{ field(type='checkbox', **kwargs) }} {{ label }}
|
||
|
</label>
|
||
|
{% if field.errors %}
|
||
|
{% for e in field.errors %}
|
||
|
<p class="help-block text-danger">{{ e }}</p>
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
{%- endmacro %}
|
||
|
|
||
|
{% macro render_radio_field(field) -%}
|
||
|
{% for value, label, checked in field.iter_choices() %}
|
||
|
<div class="radio">
|
||
|
<label>
|
||
|
<input type="radio" name="{{ field.id }}" id="{{ field.id }}" value="{{ value }}"{% if checked %} checked{% endif %}>
|
||
|
{{ label }}
|
||
|
</label>
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
{% if field.errors %}
|
||
|
{% for e in field.errors %}
|
||
|
<p class="help-block text-danger">{{ e }}</p>
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
{%- endmacro %}
|
||
|
|
||
|
{% macro render_submit_field(field, label=None, tabindex=None) -%}
|
||
|
{% if not label %}{% set label=field.label.text %}{% endif %}
|
||
|
{#<button type="submit" class="form-control btn btn-default btn-primary">{{label}}</button>#}
|
||
|
<input type="submit" class="btn btn-lg btn-block btn-primary {{ kwargs.pop('class_', '') }}" value="{{label}}"
|
||
|
{% if tabindex %}tabindex="{{ tabindex }}"{% endif %}
|
||
|
>
|
||
|
{%- endmacro %}
|
||
|
|
||
|
{% macro sentence_case(text) %}
|
||
|
{{ text[0]|upper}}{{text[1:] }}
|
||
|
{%- endmacro %}
|