{% extends "base.html" %} {% block title %}History - Clothing Portal{% endblock %} {% block content %}
| Date | User | Name | Type | Group | Price | Status | Asset ID |
|---|---|---|---|---|---|---|---|
| {{ u.created_at }} | {{ u.username }} | {{ u.name }} | {{ "Shirt" if u.asset_type == 11 else "Pants" }} | {{ u.group_id }} | {{ u.price }} | {{ u.status }} | {% if u.asset_id %}{{ u.asset_id }}{% else %}-{% endif %} |
No uploads yet.
{% endif %} {% endblock %}