{% extends theme('layout.html') %} {% from theme('macros.html') import render_pagination %} {% block content %}
{{ render_pagination(topics, url_for('user.view_all_topics', username=user.username)) }}
{% for topic in topics.items %} {% else %} {% endfor %}
All Topics created by {{ user.username }}
Thread Posts Views Last Post
{{ topic.title }}
by {{ topic.user.username }}
{{ topic.post_count }} {{ topic.views }} {{ topic.last_post.date_created|time_since }}
by {{ topic.last_post.user.username }}
No Topics so far.
{% endblock %}