diff --git a/sstreasury/jinja2/sstreasury/budget_view.html b/sstreasury/jinja2/sstreasury/budget_view.html index 707f834..d4d37ea 100644 --- a/sstreasury/jinja2/sstreasury/budget_view.html +++ b/sstreasury/jinja2/sstreasury/budget_view.html @@ -222,6 +222,41 @@ {% endif %} {% endfor %} + + {% if claims is not none %} +

Reimbursement claims

+ + {% if claims %} + + + + + + + + + + + {% for claim in claims %} + + + + + + + {% endfor %} + +
PurposeStatusTotalView
{{ claim.purpose }}{{ claim.get_state_display() }}{{ '${:.2f}'.format(claim.get_total()) }} + +
+ +
+

This list will not include invoices, or other transactions tracked outside of Self Service.

+
+ {% else %} +

There are no claims to display.

+ {% endif %} + {% endif %} {% endif %}