mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-16 22:40:24 +00:00
Fix padding in admin table.
This commit is contained in:
parent
51c25f5208
commit
16bb8d50e6
1 changed files with 9 additions and 6 deletions
|
|
@ -10,6 +10,9 @@
|
|||
<style>
|
||||
#result_list .changed {
|
||||
background-color: #ffc;
|
||||
}
|
||||
#changelist table thead th .text {
|
||||
padding: 2px 5px;
|
||||
}
|
||||
#changelist table tbody td:first-child {
|
||||
text-align: left;
|
||||
|
|
@ -36,10 +39,10 @@
|
|||
<table cellspacing="0" id="result_list">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{% trans "Name" %}</th>
|
||||
<th>{% trans "Default" %}</th>
|
||||
<th>{% trans "Value" %}</th>
|
||||
<th>{% trans "Is modified" %}</th>
|
||||
<th><div class="text">{% trans "Name" %}</div></th>
|
||||
<th><div class="text">{% trans "Default" %}</div></th>
|
||||
<th><div class="text">{% trans "Value" %}</div></th>
|
||||
<th><div class="text">{% trans "Is modified" %}</div></th>
|
||||
</tr>
|
||||
</thead>
|
||||
{% for item in config %}
|
||||
|
|
@ -77,11 +80,11 @@
|
|||
<a href="../../">
|
||||
{% trans "Home" %}
|
||||
</a>
|
||||
›
|
||||
›
|
||||
<a href="../">
|
||||
{{ app_label|capfirst }}
|
||||
</a>
|
||||
›
|
||||
›
|
||||
{{ opts.verbose_name_plural|capfirst }}
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
|
|||
Loading…
Reference in a new issue