{% extends "base.html" %}
{% block title %}Budget{% endblock %}
{% block body %}
Budget vs Actual — {{ period }}
{% if bva %}
Version: {{ versions[0].name }}. Actual is posted ledger activity for the month.
| Code | Account | Budget | Actual | Variance |
{% for r in bva.rows %}
| {{ r.code }} | {{ r.name }} |
{{ r.budget|c }} | {{ r.actual|c }} |
{{ r.variance|c }} |
{% endfor %}
| Total | {{ bva.total_budget|c }} | {{ bva.total_actual|c }} | {{ bva.total_variance|c }} |
{% else %}No budget version.
{% endif %}
Goals
| Goal | Target | Current | Progress | Target date |
{% for g in goals %}
| {{ g.name }} | {{ g.target_cents|c }} | {{ g.current_cents|c }} |
{{ '%.0f'|format(100*g.current_cents/g.target_cents) }}% | {{ g.target_date }} |
{% endfor %}
Commitments (future obligations — {{ commit.total_cents|c }} total)
| Commitment | Due | Amount | Status |
{% for c in commit.rows %}| {{ c.name }}{% if c.vendor_name %} · {{ c.vendor_name }}{% endif %} | {{ c.due_date }} | {{ c.amount_cents|c }} | {{ c.status }} |
{% endfor %}
Purchase Requests
| Item | Vendor | Estimate | Desired | Capitalize | Status |
{% for p in prs %}| {{ p.item }} | {{ p.vendor or '' }} | {{ p.estimated_cents|c }} | {{ p.desired_date }} | {{ 'yes' if p.capitalize else 'no' }} | {{ p.status }} |
{% endfor %}
{% endblock %}