{% extends "base.html" %} {% load crispy_forms_filters %} {% load static %} {% load i18n %} {% block title %} {# Check if an 'object' exists in the context #} {% if object %} {% trans 'Update Service'%} {% else %} {% trans 'Add New Service'%} {% endif %} {% endblock %} {% block content %}
{% if service.pk %} {{ _("Update Service") }} {% else %} {{ _("Add Service") }} {% endif %}
{% csrf_token %} {{ form|crispy }}
{% trans "Cancel" %}
{% endblock content %}