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

{{ listing.title }}

{% if listing.price_display %}{{ listing.price_display }}{% endif %} {{ listing.category.name }} {% if not listing.is_live %}{{ listing.status.value }}{% endif %}

{% if listing.city %}{{ listing.city }}, {{ listing.state }} {{ listing.zip }}{% endif %} ยท {{ _('%(n)s views', n=listing.view_count) }}

{% if listing.images %} {% endif %}
{{ listing.body | replace('\n','
') | safe }}
{% if listing.attributes %} {% for f in listing.category.fields() %} {% if listing.attributes.get(f.name) is not none %} {% endif %} {% endfor %}
{{ f.label }}{{ listing.attributes.get(f.name) }}
{% endif %}
{% endblock %}