source: main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/browser/templates/staffsitelayout.pt @ 10927

Last change on this file since 10927 was 10927, checked in by uli, 11 years ago

Apply kofa tags to staff page.

File size: 5.0 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" xml:lang="en" i18n:domain="waeup.kofa">
3  <head>
4    <title i18n:translate="">
5      WAeUP.Kofa - Student Management System
6    </title>
7    <!--base href="http://localhost:8080/app/@@page"
8     tal:attributes="href python: view.url(layout.site)" / -->
9    <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
10    <meta name="robots" content="index, follow" />
11    <link rel="alternate" type="application/rss+xml" title="RSS"
12        href="http://www.example.net/feed.rss"
13        tal:attributes="title string:RSS feed of ${layout/getAppTitle};
14            href python: view.url(layout.site, 'feed.rss')" />
15  </head>
16  <body class="page kofa-body">
17    <div class="topbar" data-scrollspy="scrollspy" >
18      <div class="topbar-inner">
19        <div class="container-fluid">
20          <a class="kofa-brand-link" href="#"
21              tal:attributes="href python: view.url(layout.site)"
22              tal:content="layout/getAppAcronym">ACRONYM</a>
23          <ul class="nav kofa-navbar-left">
24            <tal:primary_nav content="structure provider:primary_nav" />
25          </ul>
26          <ul class="nav secondary-nav kofa-navbar-right">
27            <li tal:condition="not: layout/isAuthenticated">
28            <a href="#" i18n:translate=""
29                tal:attributes="href python: view.url(layout.site, 'login')">
30                Login
31            </a>
32            </li>
33            <li tal:condition="layout/isAuthenticated">
34            <a href="#" i18n:translate=""
35               tal:attributes="href python: view.url(layout.site, '@@contactadmin')">
36               Contact
37            </a>
38            </li>
39            <li tal:condition="layout/isAuthenticated">
40            <a href="#" i18n:translate=""
41               tal:attributes="href python: view.url(context, '@@logout')">
42               Logout
43            </a>
44            </li>
45          </ul>
46          <span class="language"
47                tal:define="langs provider:languages"
48                tal:condition="langs">
49            <tal:languages
50                  tal:content="structure langs" /> |
51          </span>
52        </div>
53      </div>
54    </div>
55
56    <ul class="breadcrumb">
57      <tal:breadcrumbs
58            tal:condition="python: layout.isAuthenticated()"
59            tal:content="structure provider:breadcrumbs" />
60      <span
61        tal:condition="layout/getStudentName" class="wfstatus">
62          <span i18n:translate="">Student Id:</span>
63          <span tal:replace="python:context.student.student_id">
64            ID
65          </span>&nbsp;&nbsp;
66          <span i18n:translate="">State:</span>
67          <span tal:replace="python:context.student.translated_state">
68            STATE
69          </span>
70      </span>
71    </ul>
72
73    <div class="container-fluid">
74      <div class="sidebar">
75        <div class="well">
76          <div tal:condition="layout/getStudentName">
77            <h5 tal:content="layout/getStudentName">STUDENTNAME</h5>
78            <ul>
79              <tal:left content="structure provider:left_studentmanage" />
80            </ul>
81          </div>
82          <div tal:condition="layout/isAuthenticated">
83            <h5 tal:content="layout/getUserTitle">USERNAME</h5>
84            <ul>
85              <tal:left content="structure provider:left_manage" />
86            </ul>
87          </div>
88        </div>
89      </div>
90      <div class="kofa-content">
91        <div class="actionbar" tal:condition="provider:actionbar">
92          <tal:actionbar content="structure provider:actionbar" />&nbsp;
93        </div>
94        <div
95            tal:define="message context/@@messages"
96            tal:condition="python: len(message)>11">
97          <div tal:content="structure message">
98          </div>
99        </div>
100        <div class="alert-message error"
101          tal:define="status view/status|nothing"
102          tal:condition="status">
103          <span tal:content="view/status">
104            FORM STATUS SUMMARY
105          </span>:
106          <ul id="alert-error" tal:condition="view/errors">
107            <li tal:repeat="error view/error_views">
108               <span tal:replace="structure error">Error Type</span>
109            </li>
110          </ul>
111        </div>
112        <div class="pull-right">
113          <a i18n:translate="" href="#footer">Back to bottom</a>
114        </div>
115        <h1 class="kofa-content-label"
116            tal:condition="view/label|nothing"
117            tal:content="structure view/label">LABEL</h1>
118        <div tal:content="structure view/content"> THE CONTENT
119        </div>
120        <div id="footer" class="footer">
121          <div class="pull-right">
122            <a i18n:translate="" href="#">Back to top</a>
123          </div>
124          <div i18n:translate="">
125            Kofa - Student Management System
126          </div>
127          <div i18n:translate="">
128            Copyright &copy; WAeUP Group 2008-2013
129          </div>
130        </div>
131      </div>
132    </div>
133  </body>
134</html>
Note: See TracBrowser for help on using the repository browser.