{% extends "base.html" %} {% load static %} {% block title %}Garment Details{% endblock %} {% block content %}

Garment Details

{{ garment.name }}

Type: {{ garment.get_garment_type_display }}

Status: {% if garment.trash %} Trashed {% elif garment.status == 'active' %} Active {% else %} Inactive {% endif %}

Description: {{ garment.description|safe }}

Service/Price:

    {% for sp in service_price_display %}
  • {{ sp.service_name }}: {{ sp.price }}
  • {% empty %}
  • No services
  • {% endfor %}
Edit Back
{% endblock %}