{% if args.tax_rules in config.TAX_RULES_UK_COMPANY %}
Asset | Date | Disposal Type | Quantity | Cost | Fees | Proceeds | Gain | |
---|---|---|---|---|---|---|---|---|
{{te.asset}} | {{te.date|datefilter}} | {{te.format_disposal()|nowrapfilter}} | {{te.quantity|quantityfilter}} | {% set asset_totals.quantity = asset_totals.quantity + te.quantity %}{{te.cost|valuefilter}} | {% set asset_totals.cost = asset_totals.cost + te.cost %}{{te.fees|valuefilter}} | {% set asset_totals.fees = asset_totals.fees + te.fees %}{{te.proceeds|valuefilter}} | {% set asset_totals.proceeds = asset_totals.proceeds + te.proceeds %} {% if te.gain >= 0 %}{{te.gain|valuefilter}} | {% else %}{{te.gain|valuefilter}} | {% endif %} {% set asset_totals.gain = asset_totals.gain + te.gain %}
Total | {{asset_totals.quantity|quantityfilter}} | {{asset_totals.cost|valuefilter}} | {{asset_totals.fees|valuefilter}} | {{asset_totals.proceeds|valuefilter}} | {% if asset_totals.gain >= 0 %}{{asset_totals.gain|valuefilter}} | {% else %}{{asset_totals.gain|valuefilter}} | {% endif %}
Total | {{cgains.totals['cost']|valuefilter}} | {{cgains.totals['fees']|valuefilter}} | {{cgains.totals['proceeds']|valuefilter}} | {% if cgains.totals['gain'] >= 0 %}{{cgains.totals['gain']|valuefilter}} | {% else %}{{cgains.totals['gain']|valuefilter}} | {% endif %}
Number of disposals: | {{cgains.summary['disposals']}} | ||
Disposal proceeds: | {% if cgains.estimate.proceeds_warning %}*{{cgains.totals['proceeds']|valuefilter}} | {% else %}{{cgains.totals['proceeds']|valuefilter}} | {% endif %}|
Allowable costs (including the purchase price): | {{(cgains.totals['cost'] + cgains.totals['fees'])|valuefilter}} | ||
Gains in the year, before losses: | {{cgains.summary['total_gain']|valuefilter}} | ||
Losses in the year: | {{cgains.summary['total_loss']|abs|valuefilter}} |
*Assets sold are more than 4 times the annual allowance ({{(cgains.estimate['allowance'] * 4)|valuefilter}}), this needs to be reported to HMRC
{% endif %} {% if not args.summary %} {% if args.tax_rules in config.TAX_RULES_UK_COMPANY %} {% include "ct_estimate.html" %} {% else %} {% include "cgt_estimate.html" %} {% endif %} {% endif %}