17 lines
321 B
HTML
17 lines
321 B
HTML
|
|
{% extends 'admin/model/list.html' %}
|
||
|
|
|
||
|
|
{% block tail %}
|
||
|
|
{{ super() }}
|
||
|
|
<style>
|
||
|
|
.api-key-cell {
|
||
|
|
font-family: monospace;
|
||
|
|
font-size: 12px;
|
||
|
|
max-width: 200px;
|
||
|
|
overflow: hidden;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
}
|
||
|
|
.api-key-masked {
|
||
|
|
color: #6c757d;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
{% endblock %}
|