mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
24 lines
785 B
Twig
24 lines
785 B
Twig
<div class="modal-header">
|
|
<button class="close" data-dismiss="modal">
|
|
<span>×</span>
|
|
</button>
|
|
<h4 class="modal-title">{{ trans('visiosoft.module.advs::message.choose_field_type') }}</h4>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
{% include "streams::modals/filter" %}
|
|
|
|
<ul class="nav nav-pills nav-stacked">
|
|
{% for field_type in field_types %}
|
|
<li class="nav-item">
|
|
<a href="{{ url_to('admin/advs/fields/create?field_type=' ~ field_type.namespace) }}" class="nav-link">
|
|
<strong>{{ trans(field_type.getTitle()) }}</strong>
|
|
<br>
|
|
<small>{{ trans(field_type.getDescription()) }}</small>
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|