{% extends "base.html" %} {% block title %}{{ user.username }}'s Posts - EcoCycle Forum{% endblock %} {% block styles %} {% endblock %} {% block content %}
{{ user.username }}
{% if posts %}
{% for post in posts %}
{{ post.content|safe }}
View in Topic
{% endfor %}
{% if pagination.total_pages > 1 %}
{% endif %} {% else %}

{{ user.username }} hasn't posted anything yet.

{% endif %}
{% if topics %}
{% for topic in topics %}

{{ topic.title }}

{{ topic.category_name }} {{ topic.created_at|timeago }} {{ topic.views }} views {{ topic.reply_count }} replies
{{ topic.content|striptags|truncate(200) }}
{% endfor %}
{% if topic_pagination.total_pages > 1 %}
{% endif %} {% else %}

{{ user.username }} hasn't created any topics yet.

{% endif %}
{% if liked_posts %}
{% for post in liked_posts %}
{{ post.content|safe }}
View in Topic
{% endfor %}
{% if likes_pagination.total_pages > 1 %}
{% endif %} {% else %}

{{ user.username }} hasn't liked any posts yet.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}