2018-11-20 16:12:32 +00:00
|
|
|
{% extends 'base.html' %}
|
2020-02-12 12:10:41 +00:00
|
|
|
{% load static %}
|
2018-11-20 16:12:32 +00:00
|
|
|
|
2020-06-03 19:30:10 +00:00
|
|
|
{% block title %}
|
|
|
|
Manage Expenses for {{ camp.title }} | {{ block.super }}
|
|
|
|
{% endblock %}
|
|
|
|
|
2018-11-20 16:12:32 +00:00
|
|
|
{% block content %}
|
|
|
|
<h2>Manage Expenses for {{ camp.title }}</h2>
|
|
|
|
|
|
|
|
{% if unapproved_expenses %}
|
|
|
|
<div class="lead">
|
|
|
|
This table shows unapproved expenses for {{ camp.title }}.
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% include 'includes/expense_list_panel.html' with expense_list=unapproved_expenses %}
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div class="lead">
|
|
|
|
This table shows all approved expenses for {{ camp.title }}.
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% include 'includes/expense_list_panel.html' %}
|
|
|
|
|
|
|
|
{% endblock content %}
|