Files
chill-bundles/src/Bundle/ChillMainBundle/Resources/views/Export/_navbar.html.twig

15 lines
631 B
Twig

<ul class="nav nav-pills justify-content-center">
{% if is_granted('CHILL_MAIN_COMPOSE_EXPORT') %}
<li class="nav-item">
<a href="{{ chill_path_forward_return_path('chill_main_export_index') }}" class="nav-link {% if current == 'common' %}active{% endif %}">
{{ 'Exports list'|trans }}
</a>
</li>
{% endif %}
<li class="nav-item">
<a href="{{ chill_path_forward_return_path('chill_main_export_saved_list_my') }}" class="nav-link {% if current == 'my' %}active{% endif %}">
{{ 'saved_export.Saved exports'|trans }}
</a>
</li>
</ul>