2018-08-29 22:52:32 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
|
2018-11-20 16:12:32 +00:00
|
|
|
{% block title %}
|
|
|
|
Reimbursement Details | {{ block.super }}
|
|
|
|
{% endblock %}
|
|
|
|
|
2018-08-29 22:52:32 +00:00
|
|
|
{% block content %}
|
|
|
|
<h3>Reimbursement Details</h3>
|
|
|
|
|
|
|
|
{% include 'includes/reimbursement_detail_panel.html' %}
|
|
|
|
|
2018-08-30 17:32:23 +00:00
|
|
|
<a href="{% url 'economy:expense_list' camp_slug=camp.slug %}" class="btn btn-primary">Back to list</a>
|
|
|
|
|
2018-08-29 22:52:32 +00:00
|
|
|
{% endblock content %}
|
|
|
|
|