phpmyadmin/resources/templates/recent_favorite_table_recent.twig
Maurício Meneghini Fauth b6eda64b43
Replace trans filter with the t function for templates
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-04-25 14:10:42 -03:00

14 lines
348 B
Twig

{% if tables is empty %}
<li>
<span class="dropdown-item-text">{{ t('There are no recent tables.') }}</span>
</li>
{% else %}
{% for table in tables %}
<li>
<a class="dropdown-item disableAjax" href="{{ url('/table/recent-favorite', table) }}">
`{{ table.db }}`.`{{ table.table }}`
</a>
</li>
{% endfor %}
{% endif %}