{% extends "base.twig" %} {% block content %} {% if currentUser.hasPermission(permission("CREATE_OWN_TOPIC")) %}
{{ __("New topic") }}
{% endif %}
{% for topic in ctx.topics %}

{% if topic.isLocked %} {% endif %} {{ topic.title }}

{{ topic.creationDate.format("c") }}

{% endfor %}
{% endblock %}