2026-03-23 22:50:03 +08:00
|
|
|
{% extends 'admin/model/list.html' %}
|
|
|
|
|
|
2026-03-23 23:19:48 +08:00
|
|
|
{% block head_css %}
|
2026-03-23 22:50:03 +08:00
|
|
|
{{ super() }}
|
|
|
|
|
<style>
|
|
|
|
|
.api-key-cell {
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
max-width: 200px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
.api-key-masked {
|
|
|
|
|
color: #6c757d;
|
|
|
|
|
}
|
2026-03-23 23:19:48 +08:00
|
|
|
.api-doc-link {
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
}
|
|
|
|
|
.api-doc-link a {
|
|
|
|
|
color: #007bff;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
.api-doc-link a:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
2026-03-23 22:50:03 +08:00
|
|
|
</style>
|
2026-03-23 23:19:48 +08:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block list_cards %}
|
|
|
|
|
{{ super() }}
|
|
|
|
|
<div class="api-doc-link">
|
|
|
|
|
<a href="{{ url_for('serve_doc', filename='API_DOC.md') }}" target="_blank">
|
|
|
|
|
<span class="material-symbols-outlined" style="vertical-align: middle;">description</span>
|
|
|
|
|
查看 API 文档
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2026-03-23 22:50:03 +08:00
|
|
|
{% endblock %}
|