Service Management

All Services ({{ services.count }})

Add Service
{% if services %}
{% for service in services %}

{{ service.name }}

${{ service.price }}
{{ service.get_category_display }} {% if service.is_active %}Active{% else %}Inactive{% endif %}

{{ service.description|truncatewords:20 }}

Edit
{% csrf_token %}
{% endfor %}
{% else %}

No Services Yet

Add services that clients can purchase.

Add First Service
{% endif %}