Skip to content
Snippets Groups Projects
Commit 39c31522 authored by Julian's avatar Julian
Browse files

Add a crude template for a material_form widget, this should be enough for now

parent db66c5d5
No related branches found
No related tags found
1 merge request!585Resolve "Correctly implement the ckeditor"
Pipeline #7716 passed with warnings
{% load material_form material_form_internal %}
{% part bound_field.field %}<{{ field.widget.component|default:'dmc-textarea' }}>
<div class="row">
<div{% attrs bound_field 'group' %}
id="id_{{ bound_field.html_name }}_container"
class="input-field col s12{% if field.required %} required{% endif %}{% if bound_field.errors %} has-error{% endif %}"
{% endattrs %}>
{% part field label %}
<label{% attrs bound_field 'label' %}
for="{{ bound_field.id_for_label }}"
{% if bound_field.value %}class="active"{% endif %}
{% endattrs %}>{{ bound_field.label }}</label>
{% endpart %}
<div style="margin-top: 35px">
{% part field prefix %}{% endpart %}{% part field control %}
{{ bound_field }}
{% endpart %}
</div>
{% part field help_text %}{% if field.help_text %}
<div class="help-block">{{ bound_field.help_text|safe }}</div>
{% endif %}
{% endpart %}{% part field errors %}
{% if bound_field.errors %}
{% include 'material/field_errors.html' %}
{% endif %}
{% endpart %}{{ hidden_initial }}
</div>
</div></{{ field.widget.component|default:'dmc-textarea' }}>{% endpart %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment