PCv5/app/templates/widgets/editor.html

11 lines
264 B
HTML

{% macro text_editor(field, label=True) %}
<div class=editor>
{{ field.label if label }}
<div>Widgets. Lots of widgets :3</div>
{{ field() }}
{% for error in field.errors %}
<span class=msgerror>{{ error }}</span>
{% endfor %}
</div>
{% endmacro %}