Parent: [c9d94b] (diff)

Child: [853210] (diff)

Download this file

analysis_report.html    69 lines (66 with data), 3.3 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{% load staticfiles %}
{% load custom_tags %}
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]>--><html class=" js canvas canvastext" lang="en"><!--<![endif]-->
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>opensourceprojects.eu - Open Source Evaluation: "{{ analysis.graph }}"</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.js"></script>
<script type="text/javascript" src="{% static "js/osseval.js" %}"></script>
</head>
<body class="wiki-Home" id="forge">
<header id="site-header">
<div class="wrapper">
<a id="header-logo" title="opensourceprojects.eu logo" href="https://opensourceprojects.eu/"><img src="{% static "images/logo.png" %}"></a>
</div>
</header>
<h1>"{{ analysis.name }}" created on {{ analysis.created }} by {{ analysis.user_login }}</h1>
<fieldset><legend><h3>Summary</h3></legend>
<p>{% autoescape off %}{{ analysis.comment }}{% endautoescape %}</p>
<table>
<tr><td width='60%'>{% autoescape off %}{{ analysis.methodology_version.radar_chart }}{% endautoescape %}</td>
<td width='40%'>{% autoescape off %}{{ analysis.methodology_version.bar_chart }}{% endautoescape %}</td></tr>
<tr><td colspan='2'>
{% autoescape off %}{{ trend_script }}{% endautoescape %}
</td></tr>
</table>
</fieldset>
{% for p in analysis.methodology_version.page_set.all %}
<fieldset><legend><h3>{{ p.name }}</h3></legend>
<fieldset><legend><h2>Graphs</h2></legend>
<table><tr>
<td width='60%'>{% autoescape off %}{{ p.radar_chart }}{% endautoescape %}</td>
<td width='40%'>{% autoescape off %}{{ p.bar_chart }}{% endautoescape %}</td>
</tr></table>
</fieldset>
{% for p1 in p.page_set.all %}
<fieldset><legend><h2>{{ p1.name }}</h2></legend>
<table width='100%'>
<tr>
<td width='{{ td_width }}%'></td>
{% for instance in analysis.instance_set.all %}
<td width='{{ td_width }}%'>{% instance_score_page instance.id p1.id %}</strong></td>
{% endfor %}
</tr>
{% for q in p1.question_set.all %}
<tr>
<td width='{{ td_width }}%'>
{{ q.text }}
{% question_weight q.id weight_scenario %}
</td>
{% for instance in analysis.instance_set.all %}
<td width='{{ td_width }}%'>{% instance_score_question instance.id q.id %}</td>
{% endfor %}
</tr>
{% endfor %}
</table>
</fieldset>
{% endfor %}
</fieldset>
{% endfor %}
</body>
</html>