{% extends "base.html" %} {% load static %} {% load url from future %} {% load i18n %} {% load django_th_extras %} {% block title %}{% trans "My Services" %} - {{ user.username }} - {{ current_site.name }}{% endblock %} {% block content %}
{% if action = 'add_service' %}

{% trans 'Creation of a new service' %}

{% else %}

{% trans 'Edition of your service' %}

{% endif %}
{% csrf_token %}
{{ form.non_field_errors }}
{{ form.name.errors }}
{{ form.name }}
{% if action = 'add_service' %} {% else %} {% endif %}
{% endblock %}