{% extends "base.html" %} {% block title %}{{ pp.start_date|dateymd }} to {{ pp.end_date|dateymd }} Pay Period - BiweeklyBudget{% endblock %} {% block extra_head_css %} {% endblock %} {% block body %} {% include 'notifications.html' %}
Remaining Balances
{{ pp_prev_date|dateymd }} {{ pp_prev_suffix }} {{ pp_curr_date|dateymd }} {{ pp_curr_suffix }} {{ pp_next_date|dateymd }} {{ pp_next_suffix }} {{ pp_following_date|dateymd }} {{ pp_following_suffix }} {{ pp_last_date|dateymd }} {{ pp_last_suffix }}
{{ pp_prev_sums['remaining']|reddollars|safe }} {{ pp_curr_sums['remaining']|reddollars|safe }} {{ pp_next_sums['remaining']|reddollars|safe }} {{ pp_following_sums['remaining']|reddollars|safe }} {{ pp_last_sums['remaining']|reddollars|safe }}
{{ pp_curr_sums['income']|dollars }}
Income
{{ pp_curr_sums['allocated']|dollars }}
allocated
{{ pp_curr_sums['spent']|dollars }}
spent
{{ pp_curr_sums['remaining']|dollars }}
remaining
Periodic Budgets -
{% for k in periodic.keys()|sort %} {% endfor %}
Budget Amount Allocated Spent Remaining
{{ budgets[k] }} {{ budget_sums[k]['budget_amount']|dollars }} {{ budget_sums[k]['allocated']|dollars }} {{ budget_sums[k]['spent']|dollars }} {{ budget_sums[k]['remaining']|reddollars|safe }}
Standing Budgets -
{% for k in standing.keys()|sort %} {% endfor %}
Budget Balance
{{ budgets[k] }} {{ standing[k]|reddollars|safe }}
Transactions -
{% for t in transactions %} {% if t['type'] == 'Transaction' %} {% else %} {% endif %} {% if t['type'] == 'Transaction' %} {% if t['sched_trans_id'] != None %} {% else %} {% endif %} {% else %} {% endif %} {% if t['reconcile_id'] != None %} {% else %} {% endif %} {% endfor %}
Date Amount Description Account Budget Scheduled? Reconciled?
{{ t['date']|dateymd }} {{ t['amount']|dollars }}{{ t['description'] }} ({{ t['id'] }})(sched) {{ t['description'] }} ({{ t['id'] }}){{ t['account_name'] }} {{ t['budget_name'] }}(from {{ t['sched_trans_id'] }}) make trans. | skipYes ({{ t['reconcile_id'] }}) 
{% include 'modal.html' %} {% endblock %} {% block extra_foot_script %} {% endblock %}