{% extends 'dashboard/base.html.twig' %} {% block title %}{{ 'templates.page_title'|trans({}, 'dashboard') }}{% endblock %} {% block dashboard_content %}

{{ 'templates.title'|trans({}, 'dashboard') }}

{% if templates %}
{% for template in templates %}
{% if template.category %} {{ template.category.name }} {% endif %} {% if template.material %} {{ template.material }} {% endif %}
{% if template.templateDescription %}

{{ template.templateDescription|length > 100 ? template.templateDescription|slice(0, 100) ~ '...' : template.templateDescription }}

{% endif %}
{{ 'templates.list.used_count'|trans({}, 'dashboard') }}
{{ 'templates.list.used_times'|trans({'%count%': template.usageCount}, 'dashboard') }}
{{ 'templates.list.created_on'|trans({}, 'dashboard') }}
{{ template.createdAt|date('d/m/y') }}
{% endfor %}
{% else %}

{{ 'templates.empty.title'|trans({}, 'dashboard') }}

{{ 'templates.empty.description'|trans({}, 'dashboard') }}

{% endif %} {% endblock %}