{% extends "base.html" %} {% load static %} {% block title %}Garment Management{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% comment %} {% endcomment %} {% for garment in garments %} {% comment %} {% endcomment %} {% endfor %}
Name CategoryTypeStatus Description Service/Price Created Actions
{{ garment.name }} {% if garment.category %}{{ garment.category.name }}{% else %}-{% endif %}{{ garment.get_garment_type_display }} {% 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" }}
View Edit
{% csrf_token %}
{% endblock %} {% block extra_js %} {% endblock %}