19 lines
417 B
HTML
19 lines
417 B
HTML
{% extends "project.html" %}
|
|
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block styles %}
|
|
<script src="{% static "claim_form/js/addReceipt.js" %}"></script>
|
|
<link rel="stylesheet" href="{% static "claim_form/css/base.css" %}"></script>
|
|
{% endblock styles %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="claim-form">
|
|
{% block content %}
|
|
{% include "expenses_claim:form.html" %}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
{% endblock body %} |