{% extends "django_classified/_base.html" %} {% load humanize i18n %} {% block title %}{% trans "My items" %}{% endblock title %} {% block body %}

{% trans "My items" %}

{% for object in object_list %} {% if forloop.first %} {% endif %} {% if forloop.last %}
{% 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" %}
{% endif %} {% empty %}

{% trans "You have no items to show." %} {% trans "Add one now!" %}

{% endfor %}
{% endblock %}