bornhack-website/src/economy/templates/reimbursement_list.html

19 lines
440 B
HTML

{% extends 'base.html' %}
{% load static %}
{% 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 %}