{% extends "base.html" %} {% block title %}Assets{% endblock %} {% block body %}
| Asset | Class | In service | Cost | Accum. deprec. | Book value | Replacement | Months left |
|---|---|---|---|---|---|---|---|
| {{ a.name }} | {{ a.cls or 'โ' }} | {{ a.in_service_date or '' }} | {{ a.cost_cents|c }} | {{ f.accumulated_cents|c }} | {{ f.book_value_cents|c }} | {{ f.replacement_cost_cents|c }} | {{ f.months_remaining if f.months_remaining is not none else 'โ' }} |
| Period | Asset | Amount | Journal |
|---|---|---|---|
| {{ r.period_label }} | {{ r.asset }} | {{ r.amount_cents|c }} | JE#{{ r.journal_entry_id }} |
Straight-line: (cost โ salvage) รท useful life. Each run posts Dr depreciation expense / Cr accumulated depreciation.
{% endblock %}