You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
973 B
34 lines
973 B
{{javascript}}
|
|
|
|
{% for message in messages %}
|
|
{{ message }}
|
|
{% endfor %}
|
|
|
|
{% if is_allowed_to_edit %}
|
|
<div class="btn-toolbar actions-bar" >
|
|
<div class="btn-group">
|
|
<a href="{{root}}&action=listing" class="btn btn--plain" title="{{'Import CSV'|get_lang}}">
|
|
<em class="size-32 icon-back"></em>
|
|
</a>
|
|
</div>
|
|
<div class="btn-group edit new">
|
|
{% for type in types %}
|
|
<a href="{{root}}&action=add&description_type={{type.id}}" class="btn btn--plain">
|
|
<img title="{{type.title}}" alt="{{type.title}}" src="{{type.icon|icon(32)}} " width="32" height="32">
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
|
|
{% if type.question %}
|
|
<div class="normal-message">
|
|
<div>
|
|
<strong>{{'Help'|get_lang}}</strong>
|
|
</div>
|
|
{{type.question}}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{{form.return_form()}}
|
|
|