Files
web2.0-backend/expenses_claim/templates/base.html
T
2019-11-10 14:32:16 +02:00

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 %}