a057bd6464
* rework economy stuff, add revenue model, unfinished code! * part 2 of economy overhaul. add views for dealing with revenue. rework expense views.
17 lines
364 B
HTML
17 lines
364 B
HTML
{% extends 'base.html' %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}
|
|
Reimbursement Details | {{ block.super }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h3>Reimbursement Details</h3>
|
|
|
|
{% include 'includes/reimbursement_detail_panel.html' %}
|
|
|
|
<a href="{% url 'economy:expense_list' camp_slug=camp.slug %}" class="btn btn-primary">Back to list</a>
|
|
|
|
{% endblock content %}
|
|
|