{% extends "dashboard/base.html" %} {% load i18n %} {% block title %} {% trans "Services" %} {% endblock %} {% block content %}

{% trans "Services" %}

{% trans "New service" %}
{% if services %}
{% for s in services %} {% endfor %}
{% trans "Title" %} {% trans "Featured" %} {% trans "Active" %} {% trans "Actions" %}
{% if s.image %}
{{ s.title }}
{% endif %}
{{ s.title }}
{{ s.short_description }}
{% if s.is_featured %} {% trans "Yes" %} {% else %}- {% endif %} {% if s.is_active %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %} {% trans "Edit" %} {% trans "Delete" %}
{% else %}
{% trans "No services yet." %}
{% endif %} {% endblock %}