Child: [7f6519] (diff)

Download this file

analysis_new.html    12 lines (12 with data), 535 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
{% extends "base.html" %}
{% load staticfiles %}
{% block content %}
<form id="new_analysisForm" action="{% url 'analysis_new' %}" method="post">{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Save" />
</form>
{% endblock %}
{% block left_menu %}
{% include "analysis/analysis_left_menu_short.html" %}
<script type="text/javascript">$("#new_anaysis").addClass("active");</script>
{% endblock %}