{% extends "djtalk/base.html" %} {% block content %}

{{ post.title }}

{{ post.content }}

Author

{{ name }}

{% if tags.count > 0 %}

Tags

{% for tag in tags.all %} {{ tag.label }}  {% endfor %}

{% endif %} {% if category is not None %}

Category

{{ category.label }} {% endif %} {% if post.user.first_name == 'Petar' %}

Actions

Edit Delete {% endif %} {% endblock %}