{% extends 'base.html' %} {% block widgets %}{% endblock widgets %} {% block title %}{{ block.super }}| Dashboard{% endblock title %} {% block content %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
My All Posts
{% if object_list %} {% for obj in object_list %} {% endfor %}
Post Category Price Taste Persons Likes Actions
{{ obj.title }} {{ obj.categories }} {{ obj.price }} {{ obj.taste }} {{ obj.persons }} {{ obj.likes_count }} Edit Delete
{% else %}

You have not any post yet !! Create a new one..

{% endif %}
{% endblock content %}