Skip to content
Snippets Groups Projects
Commit 624a47f5 authored by Frank Poetzsch-Heffter's avatar Frank Poetzsch-Heffter
Browse files

replace 'Kostenstelle' by 'Buchungskonto' in booking/index.html

parent 59c2689b
No related branches found
No related tags found
1 merge request!86Merge school-apps
......@@ -48,11 +48,11 @@
<td>{{ account.name }}</td>
<td>{{ account.costcenter }}</td>
{% if account.income %}
<td class="green-text right-align">{{ account.budget }}</td>
<td class="green-text right-align">{{ account.budget }}</td>
<td></td>
{% else %}
<td></td>
<td class="red-text right-align">{{ account.budget }}</td>
<td class="red-text right-align">{{ account.budget }}</td>
{% endif %}
<td class="right-align">
<a href="{% url 'account_edit' account.id %}"
......
......@@ -19,7 +19,7 @@
<tr>
<th>Anschaffungswunsch</th>
<th class="right-align">Geplanter Betrag</th>
<th>Kostenstelle</th>
<th>Buchungskonto</th>
<th>Antragsteller</th>
<th>Status</th>
<th>Aktionen</th>
......
......@@ -22,14 +22,14 @@
{% for account in accounts %}
<div class="collection-item row">
<span class="col s5 m5">{{ account.name }}</span>
<span class="col s2 m2 right-align">{{ account.budget }}</span>
<span class="col s2 m2 right-align">{{ account.budget }}</span>
<span class="col s1 m1 right-align">
{% if account.income %}{{ account.saldo }}{% endif %}
{% if account.income %}{{ account.saldo }}{% endif %}
</span>
<span class="col s1 m1 right-align">
{% if not account.income %}{{ account.saldo }}{% endif %}
{% if not account.income %}{{ account.saldo }}{% endif %}
</span>
<span class="col s1 m1 right-align">{{ account.rest }}</span>
<span class="col s1 m1 right-align">{{ account.rest }}</span>
</div>
{% endfor %}
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment