Fix invoice list (edit, bold title)
This commit is contained in:
parent
c8b58a18ac
commit
951f157de9
2 changed files with 8 additions and 4 deletions
|
@ -401,6 +401,12 @@ ul.invoices {
|
|||
text-align: right;
|
||||
align-items: center;
|
||||
|
||||
> * {
|
||||
&.title {
|
||||
font-weight: 650;
|
||||
}
|
||||
}
|
||||
|
||||
&.new,
|
||||
&.more {
|
||||
border-style: dashed;
|
||||
|
|
|
@ -4,10 +4,8 @@
|
|||
<ul class="invoices">
|
||||
{% for invoice in transaction.invoices %}
|
||||
<li>
|
||||
<a href="{{ invoice.file.url }}">{{ "file"|remix }}{{ invoice.name }} [{{ invoice.file|extension }}]</a>
|
||||
<a class="i"
|
||||
href="{{ invoice.get_absolute_url }}"
|
||||
title="{% translate "Edit" %}">{{ "file-edit"|remix }}</a>
|
||||
<a class="title" href="{{ invoice.file.url }}">{{ "file"|remix }}{{ invoice.name }} [{{ invoice.file|extension }}]</a>
|
||||
<a href="{{ invoice.get_absolute_url }}">{{ "file-edit"|remix }}{% translate "Edit" %}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
<li class="new">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue