19 lines
353 B
HTML
19 lines
353 B
HTML
{% extends "admin/constance/change_list.html" %}
|
|
|
|
{% block extrastyle %}
|
|
{{ block.super }}
|
|
<style>
|
|
.constance table thead th:nth-child(1) {
|
|
width: 300px;
|
|
}
|
|
.constance table thead th:nth-child(2) {
|
|
width: 250px;
|
|
}
|
|
.constance table thead th:nth-child(4) {
|
|
width: 200px;
|
|
}
|
|
.constance table tbody a {
|
|
display: none;
|
|
}
|
|
</style>
|
|
{% endblock %} |