{% extends 'generic/object.html' %} {% load i18n %} {% block content %}
| {% trans "Title" %} | {{ openapi_data.schema.title }} |
|---|---|
| {% trans "Schema Version" %} | {{ openapi_data.schema.version }} |
| {% trans "Backend Version" %} | {{ openapi_data.backend_version|default:"unknown" }} |
| {% trans "Cache" %} | {% if openapi_data.cache_hit %} {% trans "Hit" %} {% elif openapi_data.cache_forced %} {% trans "Forced Refresh" %} {% else %} {% trans "Refreshed" %} {% endif %} |
| {% trans "Last Refreshed" %} | {{ openapi_data.refreshed_at|default:"—" }} |
| {% trans "Paths" %} | {{ openapi_data.schema.stats.paths }} |
| {% trans "Operations" %} | {{ openapi_data.schema.stats.operations }} |
| {% trans "Schemas" %} | {{ openapi_data.schema.stats.schemas }} |
| {% trans "Security Schemes" %} | {{ openapi_data.schema.stats.security_schemes }} |
| {% trans "Name" %} | {% trans "Type" %} |
|---|---|
{{ item.name }} |
{{ item.type|default:"—" }} |
{{ openapi_data.schema.description }}
| {% trans "URL" %} | {% trans "Description" %} |
|---|---|
{{ server.url }} |
{{ server.description|default:"—" }} |
| {% trans "Method" %} | {% trans "Path" %} | {% trans "Summary" %} | {% trans "Operation ID" %} | {% trans "Tags" %} |
|---|---|---|---|---|
{{ op.method }} |
{{ op.path }} |
{{ op.summary|default:"—" }} | {{ op.operation_id|default:"—" }} |
{{ op.tags|default:"—" }} |
| {% trans "No operations found in schema." %} | ||||