Merge branch 'master' into feature-auth-tokens
commit
23bb932785
@ -1,5 +1,7 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block box_content %}
|
{% block content %}
|
||||||
|
{% call macros.box() %}
|
||||||
{{ macros.form(form) }}
|
{{ macros.form(form) }}
|
||||||
|
{% endcall %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -1,13 +0,0 @@
|
|||||||
{% macro render_field(field, label_visible=true) -%}
|
|
||||||
<div class="form-group {% if field.errors %}has-error{% endif %} {{ kwargs.pop('class_', '') }}">
|
|
||||||
{% if field.type != 'HiddenField' and label_visible %}
|
|
||||||
<label for="{{ field.id }}" class="control-label">{{ field.label }}</label>
|
|
||||||
{% endif %}
|
|
||||||
{{ field(class_='form-control', **kwargs) }}
|
|
||||||
{% if field.errors %}
|
|
||||||
{% for e in field.errors %}
|
|
||||||
<p class="help-block">{{ e }}</p>
|
|
||||||
{% endfor %}
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
{%- endmacro %}
|
|
@ -1,5 +0,0 @@
|
|||||||
{% extends "general.html" %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
Test
|
|
||||||
{% endblock %}
|
|
Loading…
Reference in New Issue