{% extends "easydata/index.html" %} {% load url from future %} {% load i18n %} {% block menu-superior %}
  • {% trans "Home" %}
  • {% trans "Namespace" %}
  • {% trans "Visibility" %}
  • {% endblock %} {% block contenido-plantilla %}

    {% trans "Edit Namespace" %} - {{ form.instance.namespace }}

    {% blocktrans with nombre_name=form.instance.namespace %}You are going to edit the existing {{ nombre_name }} namespace. You can edit the namespace's name and short_name and if you want to update the namespace specification, you can provide a file with the namespace specification to add the new entities and properties and construct the new existing relations.{% endblocktrans %}

    {% csrf_token %}
    {{ form.namespace }} {% if form.namespace.errors %}{{ form.namespace.errors }}{% endif %}
    {{ form.short_name }} {% if form.short_name.errors %}{{ form.short_name.errors }}{% endif %}

    {% trans "Update the entities and properties" %}

    {{ form.formato }} {% if form.formato.errors %}{{ form.formato.errors }}{% endif %}
    {{ form.url }} {% if form.url.errors %}{{ form.url.errors }}{% endif %}
    {{ form.archivo }}
    {% trans "Back" %}
    {% endblock %}