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: 643
Committed: Wed Mar 28 20:25:14 2018 UTC (8 years ago) by nino.borges
Content type: text/html
File size: 2090 byte(s)
Log Message:
Final version before leaving AD

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 nino.borges 643
14     <link rel="stylesheet" type="text/css" href="static/css/mainDash.css">
15    
16 nino.borges 613 </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 nino.borges 643
25     <p align="right"><a href="/AddProjectPage/">Add new client and project</a></p>
26    
27 nino.borges 613 <h1>Active Projects</h1>
28 nino.borges 643
29     <div class="LContentChunk">
30     <h2>Active Client Projects</h2>
31 nino.borges 613 <ul>
32 nino.borges 643 {% for project in activeClientProjects %}
33 nino.borges 613 <li><a href="/Detail/{{ project.id }}" >{{ project.name }} | {{ project.client.name }}</a></li>
34     {% endfor %}
35     </ul>
36 nino.borges 643
37     </div>
38    
39     <div class="RightContentChunk">
40     <h2>Active Internal Projects</h2>
41     <ul>
42     {% for project in activeInternalProjects %}
43     <li><a href="/Detail/{{ project.id }}" >{{ project.name }} | {{ project.client.name }}</a></li>
44     {% endfor %}
45     </ul>
46     </div>
47    
48    
49     <div class="RegularContentChunk">
50     <br/><br/><hr width=80%>
51 nino.borges 613 <h1>Executed Projects</h1>
52     <ul>
53     {% for project in executedProjects %}
54     <li><a href="/Detail/{{ project.id }}" >{{ project.name }} | {{ project.client.name }}</a></li>
55     {% endfor %}
56     </ul>
57     <h1>Dormant Projects</h1>
58     <ul>
59     {% for project in dormantProjects %}
60     <li><a href="/Detail/{{ project.id }}" >{{ project.name }} | {{ project.client.name }}</a></li>
61     {% endfor %}
62     </ul>
63    
64    
65 nino.borges 643
66     </div>
67    
68 nino.borges 613 </body>
69     </html>