Parent: [77df3f] (diff)

Child: [fdd613] (diff)

Download this file

analysis_left_menu.html    45 lines (42 with data), 2.2 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!--
# This Source Code Form of OSSEval is subject to the terms of the GNU AFFERO
# GENERAL PUBLIC LICENSE, v. 3.0. If a copy of the AGPL was not
# distributed with this file, You can obtain one at http://www.gnu.org/licenses/agpl.txt
#
# OSSeval is powered by the SOS Open Source AGPL edition.
# The AGPL requires that you do not remove the SOS Open Source attribution and copyright
# notices from the user interface (see section 5.d below).
# OSSEval Copyright 2014 Bitergium SLL
# SOS Open Source Copyright 2012 Roberto Galoppini
# Author: Davide Galletti
-->
{% load staticfiles %}
<div class="magic_bar_osp">
<div id="top_nav">
<a id="all_analyses" href="{% url 'analysis_list' %}">All analyses</a>
<a id="new_anaysis" href="{% url 'analysis_new' %}">New</a>
<a id="import" href="{% url 'upload_page' %}">Import</a>
</div>
<div id="sidebar">
<h3>This analysis</h3>
<ul class="sidebarmenu">
<li>
<a id="analysis_search" href={% url 'analysis_detail' analysis.id %}><span>Search</span></a>
</li>
<li>
<a id="analysis_questions" href={% url 'analysis_questions' analysis.id %}><span>Questions</span></a>
</li>
<li>
{% for weight_scenario in weight_scenarios %}
<a target="_blank" id="analysis_report" href={% url 'analysis_report_with_scenario' analysis.id weight_scenario.id %}><span>Report ({{ weight_scenario.name }})</span></a>
{% endfor %}
</li>
<li>
<a href={% url 'analysis_edit' analysis.id %}><span>Edit</span></a>
</li>
<li>
<a target="_blank" href={% url 'analysis_export' analysis.id %}><span>Export</span></a>
</li>
</ul>
</div>
</div>