[6690] | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
[7674] | 2 | <html xmlns="http://www.w3.org/1999/xhtml" i18n:domain="waeup.sirp"> |
---|
[6690] | 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)" |
---|
[7459] | 12 | tal:attributes="href python: view.url(layout.site, '@@/waeup.sirp.browser/mobile.css')" |
---|
| 13 | type="text/css" /> |
---|
[6690] | 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> |
---|
[7459] | 20 | <body> |
---|
| 21 | <div class="topbar" data-scrollspy="scrollspy" > |
---|
| 22 | <div class="topbar-inner"> |
---|
| 23 | <div class="container"> |
---|
[7461] | 24 | <a class="brand" href="#" |
---|
| 25 | tal:attributes="href python: view.url(layout.site)" |
---|
[7707] | 26 | tal:content="layout/getAppAcronym">ACRONYM</a> |
---|
[7459] | 27 | <ul class="nav"> |
---|
[7184] | 28 | <tal:primary_nav content="structure provider:primary_nav" /> |
---|
[6693] | 29 | <tal:primary_nav content="structure provider:primary_nav_student" /> |
---|
[7459] | 30 | </ul> |
---|
| 31 | <ul class="nav secondary-nav"> |
---|
| 32 | <li tal:condition="not: layout/isAuthenticated"> |
---|
[7674] | 33 | <a href="#" i18n:translate="" |
---|
| 34 | tal:attributes="href python: view.url(layout.site, 'login')"> |
---|
[7459] | 35 | Login |
---|
| 36 | </a> |
---|
| 37 | </li> |
---|
| 38 | <li tal:condition="layout/isAuthenticated"> |
---|
[7674] | 39 | <a href="#" i18n:translate="" |
---|
| 40 | tal:attributes="href python: view.url(layout.site, '@@contactadmin')"> |
---|
[7459] | 41 | Contact |
---|
| 42 | </a> |
---|
| 43 | </li> |
---|
| 44 | <li tal:condition="layout/isAuthenticated"> |
---|
[7674] | 45 | <a href="#" i18n:translate="" |
---|
[7707] | 46 | tal:attributes="href python: view.url(context, '@@logout')"> |
---|
| 47 | Logout |
---|
| 48 | </a> |
---|
[7459] | 49 | </li> |
---|
| 50 | </ul> |
---|
[7674] | 51 | <span class="language"> |
---|
| 52 | <tal:languages |
---|
| 53 | tal:content="structure provider:languages" /> | |
---|
| 54 | </span> |
---|
[6690] | 55 | </div> |
---|
| 56 | </div> |
---|
[7459] | 57 | </div> |
---|
[7674] | 58 | |
---|
[7459] | 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"> |
---|
[7707] | 65 | <span tal:replace="python:context.getStudent().student_id"> |
---|
| 66 | Id |
---|
[7551] | 67 | </span> |
---|
| 68 | | |
---|
[7707] | 69 | <span tal:replace="python:context.getStudent().translated_state"> |
---|
| 70 | State |
---|
[7459] | 71 | </span> |
---|
| 72 | </span> |
---|
| 73 | </ul> |
---|
| 74 | <div class="content"> |
---|
[7469] | 75 | <div class="actionbar" tal:condition="provider:actionbar"> |
---|
[7635] | 76 | <tal:actionbar content="structure provider:actionbar" /> |
---|
[7469] | 77 | </div> |
---|
[7459] | 78 | <div tal:define="message context/@@messages" |
---|
| 79 | tal:condition="python: len(message)>11"> |
---|
| 80 | <div tal:content="structure message"> |
---|
[6690] | 81 | </div> |
---|
| 82 | </div> |
---|
[7463] | 83 | <div class="alert-message error" |
---|
| 84 | tal:define="status view/status|nothing" |
---|
| 85 | tal:condition="status"> |
---|
[7707] | 86 | <span i18n:translate=""> |
---|
| 87 | Form Status: |
---|
| 88 | </span> |
---|
[7669] | 89 | <span tal:content="view/status"> |
---|
[7707] | 90 | FORM STATUS SUMMARY |
---|
[7463] | 91 | </span> |
---|
| 92 | </div> |
---|
[7669] | 93 | <h1 tal:condition="view/label|nothing" |
---|
[7630] | 94 | tal:content="view/label">Label</h1> |
---|
[7707] | 95 | <div tal:content="structure view/content"> |
---|
| 96 | THE CONTENT |
---|
[6690] | 97 | </div> |
---|
[7459] | 98 | <div class="footer"> |
---|
[7707] | 99 | <p class="pull-right"><a i18n:translate="" href="#">Back to top</a></p> |
---|
| 100 | <p i18n:translate=""> |
---|
[7459] | 101 | Student Information and Registration Portal<br /> |
---|
| 102 | Copyright © WAeUP Group, 2008-2012 |
---|
| 103 | </p> |
---|
| 104 | </div> |
---|
[6690] | 105 | </div> |
---|
| 106 | </div> |
---|
| 107 | </body> |
---|
| 108 | </html> |
---|