{% extends "dashboard/base.html" %} {% load staticfiles %} {% load i18n %} {% load crispy_forms_tags %} {% block title-page %}{% trans "Endpoint" %}{% endblock %} {% block content %}

{% trans "Endpoint" %}

{% with form=form %} {% include "display-form-errors.html" %} {% endwith %} {% csrf_token %}
{{ form.name|as_crispy_field }}
{{ form.address|as_crispy_field }}
{{ form.port|as_crispy_field }}
{% trans "Back" %}
{% trans "Delete" %}

{% trans "Delete endpoint" %}

{% endblock %}