openclassify/addons/default/visiosoft/customfields-module/resources/views/admin/cfvalue/choose.twig
Mostafa Moradi 4eac3243b8 4.0-mostafa
2024-08-18 17:45:09 +03:00

28 lines
860 B
Twig

<div class="modal-header">
<button class="close" data-dismiss="modal">
<span>&times;</span>
</button>
<h4 class="modal-title">{{ trans('module::message.choose_type') }}</h4>
</div>
<div class="modal-body">
{% include "streams::modals/filter" %}
{% if not types.isEmpty() %}
<ul class="nav nav-pills nav-stacked">
{% for type in types %}
<li class="nav-item">
<a href="{{ url_to('admin/customfields/cfvalue/create?type=' ~ type.id) }}" class="nav-link">
<strong>{{ type.name }}</strong>
<br>
<small>{{ type.category }}</small>
</a>
</li>
{% endfor %}
</ul>
{% else %}
{{ trans('streams::message.no_results') }}
{% endif %}
</div>