DrCr/austax/templates/cgt_adjustments.html

60 lines
2.3 KiB
HTML
Raw Normal View History

2023-01-07 14:07:58 +11:00
{# DrCr: Web-based double-entry bookkeeping framework
Copyright (C) 2022–2023 Lee Yingtong Li (RunasSudo)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
#}
{% extends 'base.html' %}
{% block title %}CGT adjustments{% endblock %}
{% block content %}
<h1 class="h2 my-4">CGT adjustments</h1>
<div class="mb-2">
<a href="/tax/cgt-adjustments/new" class="btn btn-primary"><i class="bi bi-plus-lg"></i> New CGT adjustment</a>
<a href="/tax/cgt-adjustments/multi-new" class="btn btn-outline-primary"><i class="bi bi-plus-lg"></i> Multiple CGT adjustments</a>
2023-01-07 14:07:58 +11:00
</div>
<table class="table">
<thead>
<tr>
<th>Account</th>
<th>Asset</th>
<th class="text-end">Units</th>
<th>Acquisition date</th>
<th class="text-end">Acquisition value</th>
<th>Adjustment date</th>
<th>Description</th>
<th class="text-end">Cost adjustment&nbsp;</th>
<th></th>
2023-01-07 14:07:58 +11:00
</tr>
</thead>
<tbody>
{% for cgt_adjustment in cgt_adjustments %}
<tr>
<td>{{ cgt_adjustment.account }}</td>
<td>{{ cgt_adjustment.asset().commodity_name() }}</td>
<td class="text-end">{{ cgt_adjustment.asset().format('hide') }}</td>
<td>{{ cgt_adjustment.acquisition_date.strftime('%Y-%m-%d') }}</td>
<td class="text-end">{{ cgt_adjustment.asset().as_cost().format() }}</td>
<td>{{ cgt_adjustment.dt.strftime('%Y-%m-%d') }}</td>
<td>{{ cgt_adjustment.description }}</td>
<td class="text-end">{{ cgt_adjustment.cost_adjustment_amount().format_accounting() }}</td>
<td><a href="/tax/cgt-adjustments/edit?id={{ cgt_adjustment.id }}"><i class="bi bi-pencil"></i></a></td>
2023-01-07 14:07:58 +11:00
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}