{% extends 'base/base.html' %} {% load static humanize %} {% block title %}My Equipment Listings | {{ block.super }}{% endblock %} {% block content %}

My Equipment Listings

List New Equipment

{{ stats.total }}

Total Listings

{{ stats.approved }}

Approved

{{ stats.pending }}

Pending Review

My Equipment
{% if listings %}
{% for item in listings %} {% endfor %}
Equipment Status Daily Rate Listed On Actions
{{ item.name }}
{{ item.name }}
{% if item.equipment_model %}{{ item.equipment_model.make.name }} {{ item.equipment_model.name }}{% endif %}
{% if item.listing_status == 'approved' %} {% if item.is_available %} Available {% else %} Unavailable {% endif %} {% elif item.listing_status == 'pending' %} Pending Review {% elif item.listing_status == 'rejected' %} Rejected {% endif %} ${{ item.daily_rate|floatformat:2 }} {{ item.created_at|date:"M d, Y" }}
{% if item.listing_status == 'approved' %} {% endif %}
{% else %}
No equipment listings found

You haven't listed any equipment for rent yet.

List Your First Item
{% endif %}
{% if is_paginated %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}