{% extends "base.html" %} {% block title %}my blog{% endblock %} {% block content %}

Medicine Blog Entries

{% for post in posts %} {% if post.category.category == "Medicine" %}
{% if user.is_authenticated %} {% if user.id == post.author.id %}
{% endif %} {% endif %}

{{ post.title }}

Published {{ post.publish }} by {{ post.author }}


{% endif %} {% endfor %} {#{% include "pagination.html" with page=posts %}#} {% endblock %}