mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
Set characters according to metadata label
This commit is contained in:
parent
72e585395b
commit
6177093a51
@ -1,31 +1,30 @@
|
||||
{% macro render_field(field) %}
|
||||
<div class="input-field">
|
||||
<i class="prefix">{{ field.name[0:1]|upper }}</i>
|
||||
<div class="input-field">
|
||||
<i class="prefix">{{ field.label.text[0:1]|upper }}</i>
|
||||
{{ field.label }}
|
||||
{{ field(data_length='255')|safe }}
|
||||
</div>
|
||||
{% if field.errors %}
|
||||
{% for error in field.errors %}
|
||||
<span class="helper-text red-text">{{ error }}</span>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endmacro %}
|
||||
|
||||
|
||||
{% macro render_field_with_value(field, corpus_file) %}
|
||||
<div class="input-field">
|
||||
<i class="prefix">{{ field.name[0:1]|upper }}</i>
|
||||
<div class="input-field">
|
||||
<i class="prefix">{{ field.label.text[0:1]|upper }}</i>
|
||||
{{ field.label }}
|
||||
{{ field(value=corpus_file[field.name], data_length='255')| safe }}
|
||||
</div>
|
||||
{% if field.errors %}
|
||||
{% for error in field.errors %}
|
||||
<span class="helper-text red-text">{{ error }}</span>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endmacro %}
|
||||
|
||||
|
||||
{% macro submit_button(input) %}
|
||||
<button class="btn waves-effect waves-light" id="{{ input.id }}" name="{{ input.name }}" type="submit" value="{{ input.label.text }}">{{ input.label.text }}<i class="material-icons right">send</i></button>
|
||||
<button class="btn waves-effect waves-light" id="{{ input.id }}" name="{{ input.name }}" type="submit" value="{{ input.label.text }}">
|
||||
{{ input.label.text }}
|
||||
<i class="material-icons right">send</i>
|
||||
</button>
|
||||
{% endmacro %}
|
||||
|
Loading…
Reference in New Issue
Block a user