{% extends "base.html" %} {% load static %} {% load i18n %} {% block title %}{% trans "My Services" %} - {{ user.username }}{% endblock %} {% block content %}

{% trans 'Modification of your service' %} {{ object.name }}

{% csrf_token %}
{% trans 'Set the parameters of your service' %} {{ form.non_field_errors }} {{ form.name }} if this is a self hosted service that required an authentication, then you should need to fill the 5 following fields :
{{ form.username }}
{{ form.username.errors }}
{{ form.password }}
{{ form.password.errors }}
{{ form.client_id }}
{{ form.client_id.errors }}
{{ form.client_secret }}
{{ form.client_secret.errors }}
{{ form.host }}
{{ form.host.errors }}
{% endblock %}