source: main/waeup.sirp/trunk/src/waeup/sirp/browser/templates/studentsitelayout.pt @ 7737

Last change on this file since 7737 was 7707, checked in by Henrik Bettermann, 13 years ago

Translation of browser and university package completed (hopefully).

File size: 4.2 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml" i18n:domain="waeup.sirp">
3  <head>
4    <title>WAeUP - your way up
5    </title>
6    <!--base href="http://localhost:8080/app/@@page"
7     tal:attributes="href python: view.url(layout.site)" / -->
8    <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
9    <meta name="robots" content="index, follow" />
10    <meta name="viewport" content="width=320, initial-scale=1, maximum-scale=1"/>
11    <link rel="stylesheet" media="only screen and (max-device-width: 480px)"
12        tal:attributes="href python: view.url(layout.site, '@@/waeup.sirp.browser/mobile.css')"
13        type="text/css" />
14    <link rel="shortcut icon" tal:attributes="href static/favicon.ico" type="image/x-icon" />
15    <link rel="alternate" type="application/rss+xml" title="RSS"
16        href="http://www.example.net/feed.rss"
17        tal:attributes="title string:RSS feed of ${layout/getAppTitle};
18            href python: view.url(layout.site, 'feed.rss')" />
19  </head>
20  <body>
21    <div class="topbar" data-scrollspy="scrollspy" >
22      <div class="topbar-inner">
23        <div  class="container">
24          <a class="brand" href="#"
25              tal:attributes="href python: view.url(layout.site)"
26              tal:content="layout/getAppAcronym">ACRONYM</a>
27          <ul class="nav">
28              <tal:primary_nav content="structure provider:primary_nav" />
29              <tal:primary_nav content="structure provider:primary_nav_student" />
30          </ul>
31          <ul class="nav secondary-nav">
32            <li tal:condition="not: layout/isAuthenticated">
33            <a href="#" i18n:translate=""
34               tal:attributes="href python: view.url(layout.site, 'login')">
35                Login
36            </a>
37            </li>
38            <li tal:condition="layout/isAuthenticated">
39            <a href="#" i18n:translate=""
40               tal:attributes="href python: view.url(layout.site, '@@contactadmin')">
41                Contact
42            </a>
43            </li>
44            <li tal:condition="layout/isAuthenticated">
45            <a href="#" i18n:translate=""
46               tal:attributes="href python: view.url(context, '@@logout')">
47               Logout
48            </a>
49            </li>
50          </ul>
51          <span class="language">
52            <tal:languages
53                  tal:content="structure provider:languages" /> |
54          </span>
55        </div>
56      </div>
57    </div>
58
59    <div class="container">
60      <ul class="student-info-bar" tal:condition="layout/isAuthenticated">
61        <tal:breadcrumbs
62              tal:condition="python: layout.isAuthenticated()"
63              tal:content="structure provider:breadcrumbs" />
64        <span tal:condition="layout/getStudentName" class="wfstatus">
65            <span tal:replace="python:context.getStudent().student_id">
66              Id
67            </span>
68            |
69            <span tal:replace="python:context.getStudent().translated_state">
70              State
71            </span>
72        </span>
73      </ul>
74      <div class="content">
75        <div class="actionbar" tal:condition="provider:actionbar">
76          <tal:actionbar content="structure provider:actionbar" />&nbsp;
77        </div>
78        <div tal:define="message context/@@messages"
79             tal:condition="python: len(message)>11">
80          <div tal:content="structure message">
81          </div>
82        </div>
83        <div class="alert-message error"
84          tal:define="status view/status|nothing"
85          tal:condition="status">
86          <span i18n:translate="">
87            Form Status:
88          </span>
89          <span tal:content="view/status">
90            FORM STATUS SUMMARY
91          </span>
92        </div>
93        <h1 tal:condition="view/label|nothing"
94            tal:content="view/label">Label</h1>
95        <div tal:content="structure view/content">
96          THE CONTENT
97        </div>
98        <div class="footer">
99          <p class="pull-right"><a i18n:translate="" href="#">Back to top</a></p>
100          <p i18n:translate="">
101            Student Information and Registration Portal<br />
102            Copyright &copy; WAeUP Group, 2008-2012
103          </p>
104        </div>
105      </div>
106    </div>
107  </body>
108</html>
Note: See TracBrowser for help on using the repository browser.