Switch to unified view

a b/OSSEval/analysis/templates/analysis/weight_scenario_graph.html
1
<!-- 
2
# This Source Code Form of OSSEval is subject to the terms of the GNU AFFERO
3
# GENERAL PUBLIC LICENSE, v. 3.0. If a copy of the AGPL was not
4
# distributed with this file, You can obtain one at http://www.gnu.org/licenses/agpl.txt
5
#
6
# OSSeval is powered by the SOS Open Source AGPL edition.
7
#  The AGPL requires that you do not remove the SOS Open Source attribution and copyright 
8
#  notices from the user interface (see section 5.d below).
9
10
# OSSEval Copyright 2014 Bitergium SLL
11
# SOS Open Source Copyright 2012 Roberto Galoppini
12
# Author: Davide Galletti 
13
-->
14
15
{% load staticfiles %}
16
{% load custom_tags %}
17
<!DOCTYPE html>
18
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
19
<!--[if IE 7 ]>    <html lang="en" class="no-js ie7"> <![endif]-->
20
<!--[if IE 8 ]>    <html lang="en" class="no-js ie8"> <![endif]-->
21
<!--[if IE 9 ]>    <html lang="en" class="no-js ie9"> <![endif]-->
22
<!--[if (gt IE 9)|!(IE)]>--><html class=" js canvas canvastext" lang="en"><!--<![endif]-->
23
    <head>
24
        <meta content="text/html; charset=UTF-8" http-equiv="content-type">
25
        <title>opensourceprojects.eu - Weight profiles for methodology "{{ methodology_name }}"</title>
26
        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.js"></script>
27
        <script type="text/javascript" src="{% static "js/osseval.js" %}"></script>
28
        <script> $(function() { $( document ).tooltip(); }); </script>
29
    </head>
30
    <body class="wiki-Home" id="forge">
31
        <header id="site-header">
32
            <div class="wrapper">
33
                <a id="header-logo" title="opensourceprojects.eu logo" href="https://opensourceprojects.eu/"><img src="{% static "images/logo.png" %}"></a>
34
            </div>
35
        </header>
36
        <h2>
37
            Weight profiles for methodology "{{ methodology_name }}"
38
        </h2>
39
        {% autoescape off %}{{ weight_scenarios_graph }}{% endautoescape %}
40
        <footer id="site-footer">
41
            <div class="footer-container" style="horizontal-align: center">
42
                <table>
43
                    <tr><td style="vertical-align:middle">Powered by </td><td width="20">&nbsp;</td><td style="vertical-align:middle"><a href="http://sosopensource.com" target="_blank"><img src="{% static "images/icon.png" %}"></a></td></tr>
44
                </table>
45
            </div>
46
        </footer>
47
    </body>
48
</html>