{{ forum.name }}
{% include 'forum/_style.html' %}
{% empty %}
{{ forum.description }}
← Volver al foro
{% if forum_is_authenticated %}
Crear nuevo tema
{% endif %}
{% for topic in topics %}
{% if topic.sticky %}Fijado{% endif %}
{% if topic.locked %}Bloqueado{% endif %}
{% if topic.moved %}Movido{% endif %}
{{ topic.name }}
por {{ topic.poster }} · {{ topic.created }}
No hay temas todavía. ¡Sé el primero en publicar!
{% endfor %} {% if pagination.total_pages > 1 %}
{% if pagination.has_prev %}« Anterior{% endif %}
{% for p in pagination.page_range %}
{% if p == pagination.page %}{{ p }}
{% else %}{{ p }}{% endif %}
{% endfor %}
{% if pagination.has_next %}Siguiente »{% endif %}
{% endif %}