|
{% extends "base.html" %}
|
|
|
|
{% block head %}
|
|
{# 样式已移动到static/css/style.css #}
|
|
{% endblock %}
|
|
|
|
{% block header_tabs %}
|
|
{% include "components/tabs.html" %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div x-cloak>
|
|
{% include "components/toolbar.html" %}
|
|
|
|
|
|
{% include "components/api_key_list.html" %}
|
|
|
|
|
|
{% include "components/states.html" %}
|
|
|
|
|
|
{% include "components/modals/add_key_modal.html" %}
|
|
{% include "components/modals/delete_confirm_modal.html" %}
|
|
{% include "components/modals/edit_key_modal.html" %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
{% include "components/scripts-bridge.html" %}
|
|
{% endblock %}
|
|
|