Compare commits
2 commits
ee3ec21527
...
18a58783c8
Author | SHA1 | Date | |
---|---|---|---|
18a58783c8 | |||
e93f6f5d2b |
2 changed files with 3 additions and 2 deletions
|
@ -8,7 +8,6 @@ form ul.errorlist {
|
|||
form {
|
||||
> table > tbody > tr > th {
|
||||
background: var(--bg-01);
|
||||
background-clip: padding-box;
|
||||
border-right: 1px solid var(--gray);
|
||||
}
|
||||
tbody :is(input, select, textarea) {
|
||||
|
|
|
@ -27,7 +27,9 @@
|
|||
<th class="l">
|
||||
<a href="{{ acc.get_absolute_url }}">{{ acc }}</a>
|
||||
</th>
|
||||
<td class="value">{{ acc.statement_set.first.value|value }}</td>
|
||||
<td class="value">
|
||||
{% if acc.statement_set.first %}{{ acc.statement_set.first.value|value }}{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
<a href="{% url "edit_account" acc.pk %}">{% translate "Edit" %}</a>
|
||||
</td>
|
||||
|
|
Loading…
Reference in a new issue