{% extends "base_menu.html" %} {% load humanize %} {% block title %} {{ ad.title }} {% endblock %} {% block head %} {% endblock %} {% block content %} {% if ad.content_type %}
{% endif %} ({{ ad.updated_at|naturaltime }}) {% if ad.owner == user %} {% endif %}

{{ ad.title }}

{% if ad.content_type %} {% endif %}

{{ ad.price }}

{{ ad.text }}

{% if ad.tags.all %}

Tags: {% for tag in ad.tags.all %} {{ tag }} {% endfor %}

{% endif %} {% if user.is_authenticated %}

{% load crispy_forms_tags %}

{% csrf_token %} {{ comment_form|crispy }}

{% else %}


All Ads


{% endif %} {% for comment in comments %}

{{ comment.text }}
({{ comment.updated_at|naturaltime }}) {% if user == comment.owner %} {% endif %}

{% endfor %} {% endblock %}