ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/ns_dev/Python/NinoCode/Active_prgs/MCP2/Trunk/Webapp/Templates/index.html
Revision: 613
Committed: Wed Sep 21 15:14:25 2016 UTC (9 years, 6 months ago) by nino.borges
Content type: text/html
File size: 2493 byte(s)
Log Message:
Creating the webapp as the new front end.

File Contents

# User Rev Content
1 nino.borges 613 <!doctype html>
2     <html class="no-js" lang="">
3     <head>
4     <meta charset="utf-8">
5     <meta http-equiv="x-ua-compatible" content="ie=edge">
6     <title></title>
7     <meta name="description" content="">
8     <meta name="viewport" content="width=device-width, initial-scale=1">
9    
10     <link rel="apple-touch-icon" href="apple-touch-icon.png">
11     <!-- Place favicon.ico in the root directory -->
12    
13     <link rel="stylesheet" href="css/normalize.css">
14     <link rel="stylesheet" href="css/main.css">
15     <script src="js/vendor/modernizr-2.8.3.min.js"></script>
16     </head>
17     <body>
18     <!--[if lt IE 8]>
19     <p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
20     <![endif]-->
21    
22     <!-- Add your site or application content here -->
23     <p>DASH</p>
24     <h1>Active Projects</h1>
25     <ul>
26     {% for project in activeProjects %}
27     <li><a href="/Detail/{{ project.id }}" >{{ project.name }} | {{ project.client.name }}</a></li>
28     {% endfor %}
29     </ul>
30     <h1>Executed Projects</h1>
31     <ul>
32     {% for project in executedProjects %}
33     <li><a href="/Detail/{{ project.id }}" >{{ project.name }} | {{ project.client.name }}</a></li>
34     {% endfor %}
35     </ul>
36     <h1>Dormant Projects</h1>
37     <ul>
38     {% for project in dormantProjects %}
39     <li><a href="/Detail/{{ project.id }}" >{{ project.name }} | {{ project.client.name }}</a></li>
40     {% endfor %}
41     </ul>
42     <a href="/AddProjectPage/">Add new client and project</a>
43    
44     <script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
45     <script>window.jQuery || document.write('<script src="js/vendor/jquery-1.12.0.min.js"><\/script>')</script>
46     <script src="js/plugins.js"></script>
47     <script src="js/main.js"></script>
48    
49     <!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
50     <script>
51     (function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
52     function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
53     e=o.createElement(i);r=o.getElementsByTagName(i)[0];
54     e.src='https://www.google-analytics.com/analytics.js';
55     r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
56     ga('create','UA-XXXXX-X','auto');ga('send','pageview');
57     </script>
58     </body>
59     </html>