{% extends "base_as_index.html" %} {% load static %} {% load i18n %} {% load pretty_json %} {% block leftbar %}
{% endblock %} {% block content %}
{% for lickey in keys_list %}
{% include 'main/openapi_add_schema_form.html' %}
{% for schema_key, schema_val in lickey.get_schemas.items %}
{% if schema_val %} {% for paths_info_key, paths_info_val in schema_val.items %}
{% for paths in paths_info_val %}
{% for paths_key, path_val in paths.items %}
{% for method in path_val %} {% for method_key in method.keys %} {% endfor %} {% endfor %} {{ paths_key }}
{% for method in path_val %} {% for method_key, method_val in method.items %} {% endfor %} {% endfor %}
{% endfor %}
{% endfor %}
{% endfor %} {% else %}
{% trans 'Schema is not valid' context 'openapi' %}
{% endif %}
{% endfor %}
{% endfor %}
{% include '_confirmation.html' %} {% endblock %}