{% extends 'dashboard/base.html' %} {% load i18n %} {% block content-header %}

Listings

{% endblock %} {% block content %} {% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %} {% trans "Add New" %}

{% trans "Listings" %}

{% for listing in object_list %} {% endfor %}
ID Title Price Type Image
ID Title Price Type Image
{{ listing.id }} {{ listing.title }} {{ listing.price }} {{ listing.type }} {{ listing.main_image }}
Showing x to y of z entries
{% endblock %}