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

Equipment Approval Queue

Back to Equipment
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
Pending Approval ({{ pending_equipment|length }})
{% csrf_token %}
{% if pending_equipment %}
{% csrf_token %}
{% for item in pending_equipment %} {% endfor %}
Equipment Listed By Daily Rate Listed On Actions
{{ item.name }}
{{ item.name }}
{% if item.equipment_model %}{{ item.equipment_model.make.name }} {{ item.equipment_model.name }}{% endif %}
{{ item.owner.get_full_name|default:item.owner.username }}
{{ item.owner.email }}
${{ item.daily_rate|floatformat:2 }} {{ item.created_at|date:"M d, Y" }}
{% else %}
No pending approvals

All equipment listings have been reviewed.

{% endif %}
Recently Approved
{% if recently_approved %}
{% for item in recently_approved %} {% endfor %}
Equipment Approved By Approved On Status
{{ item.name }}
{{ item.name }}
{% if item.equipment_model %}{{ item.equipment_model.make.name }} {{ item.equipment_model.name }}{% endif %}
{{ item.updated_by.get_full_name|default:item.updated_by.username }} {{ item.updated_at|date:"M d, Y" }} {% if item.is_available %} Available {% else %} Unavailable {% endif %}
{% else %}

No recently approved items.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}