{% extends "base.html" %} {% load static %} {% block title %}Service Management{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% for service in services %} {% endfor %}
Service Name Description Image Status Created Conditions Actions
{{ service.service_name }} {{ service.description|striptags|truncatechars:80 }} {% if service.image %} {{ service.service_name }} {% endif %} {% if service.status == 'active' %} Active {% else %} Inactive {% endif %} {{ service.created_at|date:"M d, Y H:i" }} {% if service.conditions %}
    {% for cond in service.conditions %}
  • {{ cond.key }}: {{ cond.value }}
  • {% endfor %}
{% endif %}
{% csrf_token %}
{% endblock %} {% block extra_js %} {% endblock %}