{% extends "base.html" %} {% block title %}Pay Periods - BiweeklyBudget{% endblock %} {% block extra_head_css %} {% endblock %} {% block body %} {% include 'notifications.html' %}
{{ periods[pp_curr_idx].overall_sums['remaining']|dollars }}
Remaining this period
{{ periods[pp_next_idx].overall_sums['remaining']|dollars }}
Remaining next period
{{ periods[pp_following_idx].overall_sums['remaining']|dollars }}
Remaining following period
{% for period in periods %} {% if curr_pp.start_date == period.start_date %} {% else %} {% endif %} {% endfor %}
Start Date Allocated Spent Remaining
{{ period.start_date|dateymd }} (current)
{{ period.start_date|dateymd }}{{ period.overall_sums['allocated']|dollars }} {{ period.overall_sums['spent']|dollars }} {{ period.overall_sums['remaining']|reddollars|safe }}
Find Pay Period
{% endblock %} {% block extra_foot_script %} {% endblock %}