diff --git a/austax/templates/cgt_adjustments.html b/austax/templates/cgt_adjustments.html index 3015a55..2983b7e 100644 --- a/austax/templates/cgt_adjustments.html +++ b/austax/templates/cgt_adjustments.html @@ -1,5 +1,5 @@ {# DrCr: Web-based double-entry bookkeeping framework - Copyright (C) 2022–2023 Lee Yingtong Li (RunasSudo) + 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 @@ -15,43 +15,61 @@ along with this program. If not, see . #} -{% extends 'base.html' %} +{% extends 'base_tailwind.html' %} {% block title %}CGT adjustments{% endblock %} {% block content %} -

CGT adjustments

+

+ CGT adjustments +

-
- New CGT adjustment - Multiple CGT adjustments + - +
- - - - - - - - - + + + + + + + + + {% for cgt_adjustment in cgt_adjustments %} - - - - - - - - - + + + + + + + + + {% endfor %}
AccountAssetUnitsAcquisition dateAcquisition valueAdjustment dateDescriptionCost adjustment 
AccountAssetUnitsAcquisition dateAcquisition valueAdjustment dateDescriptionCost 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() }}{{ 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() }} + + + + + +