{% set current_theme = current_theme() %} {{ current_theme.headertags() }} {{ current_theme.local_style() }} {{ _('Gestión de Etiquetas') }} - {{ _('Blog') }} {{ current_theme.navbar() }}
{{ current_theme.notify() }}

{{ _('Gestión de Etiquetas') }}

{% if tags %}
{% for tag in tags %} {% endfor %}
{{ _('Nombre') }} {{ _('Slug') }} {{ _('Publicaciones') }} {{ _('Acciones') }}
{{ tag.name }} {{ tag.slug }} {{ tag.posts | length }} {{ _('Eliminar') }}
{% if pagination.pages > 1 %} {% endif %} {% else %}
{{ _('No hay etiquetas creadas en este momento.') }}
{% endif %}
{{ _('Crear nueva etiqueta') }}
{{ form.hidden_tag() }}
{{ form.name.label(class="form-label") }} {{ form.name(class="form-control") }} {% for error in form.name.errors %}
{{ error }}
{% endfor %}