{% extends "madga/studio/base.html" %} {% load i18n madga_studio_tags %} {% block breadcrumbs %}Settings{% endblock %} {% block content %}

Settings

Configuración global del sitio.

{% for tab in tabs %} {{ tab.label }} {% endfor %}
{% csrf_token %} {% for tab in tabs %}
{% for fname in tab.fields %} {% with field=bound|get_item:fname %} {% if field %}
{{ field }} {% if field.help_text %}{{ field.help_text }}{% endif %} {% if field.errors %}{{ field.errors }}{% endif %}
{% endif %} {% endwith %} {% endfor %}
{% endfor %}
{% if current_tab == 'integrations' and site %}

API key

{{ site.api_key }} Usa esta clave en el header Authorization: Bearer … al consumir la API headless.
{% endif %}
{% endblock %}