{% extends 'base.html' %} {% load humanize %} {% block title %}{{ block.super }}| {{ object.title }}{% endblock title %} {% block content %}

{{ object.title }}

by {% if object.user.get_full_name %} {{ object.user.get_full_name }} {% else %} {{ object.user.username }} {% endif %}


Posted on, {{ object.created_at|naturaltime }}


{{ object.title }}

{{ object.details }}

Platter {{ object.title }}
Category: {% for cat in object.get_categories %} {{ cat }} {% endfor %}
Location {{ object.location }}
Price {{ object.price }} Taka, Vat {{ object.vat }}%
Persons {{ object.persons }}
Taste {{ object.taste }} out of 10
Likes {{ object.likes_count }}

Leave a Comment:
{% csrf_token %}
{% if object.comments.all %} {% for comment in object.comments.all %}
Image
{{ comment.user.get_full_name }}

{{ comment.text }}
 {{ comment.created_at }}

{% endfor %} {% endif %}
{% endblock content %}