a057bd6464
* rework economy stuff, add revenue model, unfinished code! * part 2 of economy overhaul. add views for dealing with revenue. rework expense views.
19 lines
445 B
HTML
19 lines
445 B
HTML
{% extends 'base.html' %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}
|
|
Expenses | {{ block.super }}
|
|
{% endblock %}
|
|
|
|
{% block extra_head %}
|
|
<script src="{% static "js/jquery.dataTables.min.js" %}"></script>
|
|
<link rel="stylesheet" href="{% static 'css/jquery.dataTables.min.css' %}">
|
|
{% endblock extra_head %}
|
|
|
|
<{% block content %}
|
|
<h3>Your {{ camp.title }} Reimbursements</h3>
|
|
|
|
{% include 'includes/reimbursement_list_panel.html' %}
|
|
|
|
{% endblock %}
|