{% extends "layout.html" %} {% load i18n %} {% block title %}{% trans "Services" %}{% endblock %} {% block content %}
{% if services %}
{% for s in services %}
{% if s.image %}
{{ s.title }}
{% else %}
{% endif %}

{{ s.title }}

{% if s.description %}
{{ s.description|linebreaksbr }}
{% elif s.short_description %}

{{ s.short_description }}

{% endif %}
{% endfor %}
{% else %} {% if request.user.is_authenticated and request.user.is_staff %}
{% url 'dashboard:service_new' as services_url %} {% blocktrans with url=services_url %}Add featured services in the dashboard to display them here.{% endblocktrans %}
{% endif %} {% endif %} {% include "website/partials/call_to_action.html" %}
{% endblock %}