{# 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 . #} {% extends 'base.html' %} {% block title %}CGT assets{% endblock %} {% block content %}

CGT assets

{% for asset in assets %} {% endfor %}
Acquisition Adjustment Disposal
Account Asset Units Date Value b/f  {{ eofy_date.year }} Date Value Gain 
{{ asset.account }} {{ asset.commodity_name() }} {{ asset.format('hide') }} {{ asset.acquisition_date.strftime('%Y-%m-%d') }} {{ asset.as_cost().format() }} {{ asset.cost_adjustment().format_accounting(link="/tax/cgt-adjustments?account={}&commodity={}&quantity={}&acquisition_date={:%Y-%m-%d}".format(asset.account, asset.commodity, asset.quantity, asset.acquisition_date)) if asset.cost_adjustments }} {# TODO #} {{ asset.disposal_date.strftime('%Y-%m-%d') if asset.disposal_date else '' }} {{ asset.disposal_value.format() if asset.disposal_value else '' }} {% if asset.disposal_date %}{{ asset.gain().format_accounting() }}{% endif %}
{% endblock %}