{% extends "django_classified/_base.html" %} {% load humanize i18n %} {% block title %}{% trans "My items" %}{% endblock title %} {% block body %}
{% trans "Group" %} | {% trans "Title" %} | {% trans "Price" %} | {% trans "Posted" %} | {% trans "Active" %} | {% trans "Edit" %} | {% trans "Delete" %} |
{{ object.group }} | {{ object }} | {{ object.price|intcomma }} | {{ object.posted|timesince }} | {{ object.is_active|yesno }} | {% trans "Edit" %} | {% trans "Delete" %} |
{% trans "You have no items to show." %} {% trans "Add one now!" %}
{% endfor %}