Child: [77df3f] (diff)

Download this file

upload_page.html    18 lines (18 with data), 565 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}
{% load staticfiles %}
{% block content %}
<h2>Import Methodology and/or Analysis</h2>
<form action="{% url 'upload_page' %}" method="post" enctype="multipart/form-data">{% csrf_token %}
{{ form.as_p }}
<p>
<input type="submit">
</p>
</form>
{% endblock %}
{% block message %}
{{ message }}
{% endblock %}
{% block left_menu %}
{% include "analysis/analysis_left_menu_short.html" %}
<script type="text/javascript">$("#import").addClass("active");</script>
{% endblock %}