{% extends "django_classified/_base.html" %} {% load classified %} {% load humanize i18n %} {% block title %}{% trans "My items" %}{% endblock title %} {# A user's own item management view; nothing here belongs in a search index. #} {% block meta_robots %}{% endblock meta_robots %} {% 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|currency }} {{ 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 %}