{% extends 'base.html' %} {% block title %}{{ category.category_name }} Category{% endblock %} {% block content %}

{{ category.category_name }}

Create Post

{% for post in posts %}
Created by {{ post.created_by }} - {{ post.creation_date.strftime('%Y-%m-%d %H:%M') }}

{{ post.post_name }}

{% for media in post.media %}
Media
{% endfor %}

{{ post.text }}


{% if comments %} {{ comment_count }} Comments {% else %} 0 Comments {% endif %}
{% endfor %}
{% endblock %}