45 lines
2.2 KiB
HTML
45 lines
2.2 KiB
HTML
<!doctype html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<meta http-equiv="P3P" content="CP=\"IDC DSP COR CURa ADMa OUR IND PHY ONL COM STA\"" />
|
|
<title>{{=response.title or URL()}}</title>
|
|
{{response.files.append(URL('static','css/styles.css'))}}
|
|
{{include 'web2py_ajax.html'}}
|
|
<script>jQuery.noConflict();</script>
|
|
</head>
|
|
<body class="{{=T('direction: ltr') == 'direction: rtl' and 'RTLbody' or ''}} {{block sectionclass}}home{{end}}">
|
|
<div id="header">
|
|
<h1 id="start">
|
|
<a href="{{=URL('default', 'index')}}" class="button"><span>web2py™ {{=T('administrative interface')}}</span></a>
|
|
</h1>
|
|
{{if response.menu is not None:}}
|
|
<ul id="menu">
|
|
{{for _name,_active,_link in response.menu:}}
|
|
<li>{{=A(SPAN(_name), _href=_link, _class=_active and 'button select' or 'button')}}</li>
|
|
{{pass}}
|
|
</ul>
|
|
{{pass}}
|
|
</div>
|
|
<div id="main">
|
|
<div id="main_inner">
|
|
<div class="flash">{{=response.flash or ''}}</div>
|
|
{{include}}
|
|
</div>
|
|
</div>
|
|
<div id="footer" class="fixed">
|
|
{{=T('Powered by')}} {{=A('web2py', _href='http://www.web2py.com')}}™ {{=T('created by')}} Massimo Di Pierro ©2007-{{=request.now.year}} -
|
|
{{if hasattr(T,'get_possible_languages_info'):}}
|
|
<span>
|
|
{{=T('Admin language')}}
|
|
<select name="adminlanguage" onchange="var date = new Date();cookieDate=date.setTime(date.getTime()+(100*24*60*60*1000));document.cookie='adminLanguage='+this.options[this.selectedIndex].id+'; expires='+cookieDate+'; path=/';window.location.reload()">
|
|
{{for langinfo in sorted([(code,info[1]) for code,info in T.get_possible_languages_info().iteritems() if code != 'default']):}}
|
|
<option {{=T.accepted_language==langinfo[0] and 'selected' or ''}} {{='id='+langinfo[0]}} >{{=langinfo[1]}}</option>
|
|
{{pass}}
|
|
</select>
|
|
</span>
|
|
{{pass}}
|
|
</div>
|
|
</body>
|
|
</html>
|