Switch to unified view

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