{% extends 'backend/components/layouts/default.html' %} {% load static %} {% load humanize %} {% block content %}
Resources Table:
{% include "backend/apps/quicknav.html" %}
Resources
Resource Table.
{% if user.is_superuser %} {% endif %} {% for resource in resources %} {% empty %} {% endfor %}
Resource Name Quantity Unit Cost Total Price Use/FunctionACTIONS
{{ forloop.counter }}. {{ resource.name }} {{ resource.number }} $ {{ resource.unit_cost|floatformat:0|intcomma }} USD $ {{ resource.total_cost|floatformat:0|intcomma }} USD {{ resource.use_function }}
No resources found.

Showing {{ resources.paginator.count }} results.

{% if resources.has_previous %} First Previous {% endif %} {% if resources.has_next %} Next Last {% endif %}

{% endblock %}