{% extends "base.html" %} {% load static %} {% block title %}Garment Management{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
| Name | Category | {% comment %}Type | {% endcomment %}Status | Description | Service/Price | Created | Actions |
|---|---|---|---|---|---|---|---|
| {{ garment.name }} | {% if garment.category %}{{ garment.category.name }}{% else %}-{% endif %} | {% comment %}{{ garment.get_garment_type_display }} | {% endcomment %}{% if garment.trash %} Trashed {% elif garment.status == 'active' %} Active {% else %} Inactive {% endif %} | {{ garment.description|striptags|truncatechars:80 }} |
{% if garment.service_prices %}
{% for sp in garment.service_prices %}
{% for service in services %}
{% if service.id == sp.service_id %}
{{ service.service_name }}: {{ sp.price }}
{% endif %}
{% endfor %}
{% endfor %}
{% else %}
No services
{% endif %}
|
{{ garment.created_at|date:"M d, Y H:i" }} |