{% extends theme("user/profile_layout.html") %} {% from theme('macros.html') import render_pagination, topic_pages %} {% block breadcrumb %} {% endblock %} {% block profile_navigation %} {% endblock %} {% block profile_content %}
{% for topic in topics.items %}
{{ topic.date_created|format_date('%d %B %Y - %H:%M') }}
{{ topic.first_post.content|markup|safe }}
{% else %}
{% trans %}The user has not opened any topics yet.{% endtrans %}
{% endfor %} {% if topics.items|length >= 1 %}
{{ render_pagination(topics, url_for('user.view_all_topics', username=user.username)) }}
{% endif %}
{% endblock %}