{% 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 object %} {% trans "Update Service" %} {% else %} {% trans "Add New Service" %} {% endif %}

{% csrf_token %} {{ form|crispy }} {% if form.errors %} {% endif %}
{% trans "Cancel" %}
{% endblock content %}