{% extends 'base.html'%} {% block content %} {% if category_posts %}

{{ cats}}CATEGORIES

{% for post in category_posts %}
  • {{post.title}} -

    {{ post.body}} {{ post.author.first_name}} {{post.author.last_name}}

    -{{post.post_datetime}}

    {% if user.is_authenticated %} - EDIT PAGE -DELETE PAGE {% endif %}

    {{ post.body|slice:":200"|safe}}
  • {% endfor%} {% else %}

    This Catogery does not exist

    {% endif %} {% endblock %}