1c88ed8073
In most cases this mirrors the primary header on the page, but in some cases the title is simplified and/or nested to reflect the depth of the current page Co-authored-by: Thomas Steen Rasmussen <tykling@bornhack.org>
28 lines
589 B
HTML
28 lines
589 B
HTML
{% extends 'base.html' %}
|
|
{% load static %}
|
|
|
|
{% block title %}
|
|
Manage Expenses for {{ camp.title }} | {{ block.super }}
|
|
{% endblock %}
|
|
|
|
{% 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 %}
|