source: trunk/LATMOS-Accounts-Web/root/html/includes/wrapper.tt @ 1480

Last change on this file since 1480 was 1442, checked in by nanardon, 9 years ago

Enable cursor plugin in jqplot

  • Property svn:keywords set to Id
File size: 2.0 KB
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<html>
3<head>
4<title>LATMOS::Accounts / [% page.title %]</title>
5<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6<link rel="stylesheet" href="[% c.uri_for('/static', 'style.css') %]?" type="text/css">
7<link rel="stylesheet" href="[% c.uri_for('/static', 'struct.css') %]?" type="text/css">
8<link rel="icon" href="[%- c.uri_for('/static', 'images', 'favicon.ico') -%]" type="image/x-icon">
9
10<script src="[% c.uri_for('/static', 'js', 'jquery', 'external/jquery/jquery.js') %]"></script>
11<script src="[% c.uri_for('/static', 'js', 'jquery', 'jquery-ui.js') %]"></script>
12<link rel="stylesheet" href="[% c.uri_for('/static/js/jquery/jquery-ui.css') %]" type="text/css">
13
14<script src="[% c.uri_for('/static', 'js', 'jqplot', 'jquery.jqplot.js') %]"></script>
15<script src="[% c.uri_for('/static', 'js', 'jqplot', 'plugins', 'jqplot.json2.js') %]"></script>
16<script src="[% c.uri_for('/static', 'js', 'jqplot', 'plugins', 'jqplot.pieRenderer.js') %]"></script>
17<script src="[% c.uri_for('/static', 'js', 'jqplot', 'plugins', 'jqplot.dateAxisRenderer.js') %]"></script>
18<script src="[% c.uri_for('/static', 'js', 'jqplot', 'plugins', 'jqplot.cursor.js') %]"></script>
19<link rel="stylesheet" href="[% c.uri_for('/static/js/jqplot/jquery.jqplot.css') %]" type="text/css">
20
21[% IF page.error %]
22<script type="text/javascript" language="JavaScript">
23window.onload = analert;
24function analert () {
25    alert('[% page.error | replace('\'', '\\\'') %]');
26}
27</script>
28[% END %]
29</head>
30
31<body>
32<!-- $Id$ -->
33
34<div id="header">
35
36<h1 style="">
37    Gestion informatique
38    [% IF c.config.company %]
39    - [% c.config.company | html %]
40    [% END %]
41</h1>
42
43</div><!-- #header -->
44
45[% IF c.user.username %]
46<div id="sidebar">
47    [% INCLUDE 'includes/sidebar.tt' %]
48</div>
49[% END %]
50
51<div id="mainbox">
52
53[% content %]
54
55</div><!-- #mainbox -->
56
57<div id="footer" style="clear: both"></div>
58</body>
59</html>
Note: See TracBrowser for help on using the repository browser.