{# DrCr: Web-based double-entry bookkeeping framework Copyright (C) 2022–2024 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 . #} {% extends 'base_tailwind.html' %} {% block title %}CGT adjustments{% endblock %} {% block content %}

CGT adjustments

New CGT adjustment Multiple CGT adjustments
{% for cgt_adjustment in cgt_adjustments %} {% endfor %}
Account Asset Units Acquisition date Acquisition value Adjustment date Description Cost adjustment 
{{ cgt_adjustment.account }} {{ cgt_adjustment.asset().commodity_name() }} {{ cgt_adjustment.asset().format('hide') }} {{ cgt_adjustment.acquisition_date.strftime('%Y-%m-%d') }} {{ cgt_adjustment.asset().as_cost().format() }} {{ cgt_adjustment.dt.strftime('%Y-%m-%d') }} {{ cgt_adjustment.description }} {{ cgt_adjustment.cost_adjustment_amount().format_accounting() }}
{% endblock %}