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

    {% trans "Visibility Configuration" %}

    {% blocktrans %}Below you can see a list with all the application's models. To configure the visibility of a concrete models, you only have to pick in this models, to display a menu where you can choose the model's visibility and the visibility of each field of the model.{% endblocktrans %}

    {% csrf_token %} {{ management }} {% if not vacio %}
    {% for form in listado %}

    {{ form.form_modelo.instance.nombre }}

    {% trans "Model" %}

    {{ form.form_modelo.as_p }}

    {% trans "Fields" %}

    {{ form.form_field.management_form }} {% for formulario in form.form_field %} {{ formulario.id }} {{ formulario.visibilidad }} {% endfor %}
    {% endfor %}
    {% trans "Back" %}
    {% endif %}
    {% endblock %}