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

Last change on this file since 1939 was 1939, checked in by nanardon, 7 years ago

A real chart for poeple

  • Property svn:keywords set to Id
File size: 2.5 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
12<script src="[% c.uri_for('/static', 'js', 'jquery', 'jquery-ui.js') %]"></script>
13<link rel="stylesheet" href="[% c.uri_for('/static/js/jquery/jquery-ui.css') %]" type="text/css">
14
15<script src="[% c.uri_for('/static', 'js', 'jqplot', 'jquery.jqplot.js') %]"></script>
16[% FOREACH plugins = [
17    'jqplot.json2.js',
18    'jqplot.pieRenderer.js',
19    'jqplot.dateAxisRenderer.js',
20    'jqplot.barRenderer.js',
21    'jqplot.cursor.js'
22    'jqplot.highlighter.js',
23    'jqplot.enhancedLegendRenderer.js',
24    'jqplot.canvasTextRenderer.js',
25    'jqplot.canvasAxisTickRenderer.js',
26    'jqplot.categoryAxisRenderer.js',
27    'jqplot.canvasAxisTickRenderer.js',
28    ] %]
29<script src="[% c.uri_for('/static', 'js', 'jqplot', 'plugins', plugins) %]"></script>
30[%- END %]
31
32<script src="[% c.uri_for('/static', 'js', 'd3', 'd3.v3.js') %]"></script>
33<script src="[% c.uri_for('/static', 'js', 'timeline', 'timeframe.js') %]"></script>
34<script src="[% c.uri_for('/static', 'js', 'jquery', 'jquery.orgchart.js') %]"></script>
35<link rel="stylesheet" href="[% c.uri_for('/static/js/jquery/jquery.orgchart.css') %]" type="text/css">
36
37<link rel="stylesheet" href="[% c.uri_for('/static/js/jqplot/jquery.jqplot.css') %]" type="text/css">
38
39<script>
40$.jqplot.config.enablePlugins = true;
41</script>
42
43[% IF page.error %]
44<script type="text/javascript" language="JavaScript">
45window.onload = analert;
46function analert () {
47    alert('[% page.error | replace('\'', '\\\'') %]');
48}
49</script>
50[% END %]
51</head>
52
53<body>
54<!-- $Id$ -->
55
56<div id="header">
57
58<h1 style="">
59    [% l('IT management') %]
60    [% IF c.config.company %]
61    - [% c.config.company | html %]
62    [% END %]
63</h1>
64
65</div><!-- #header -->
66
67[% IF c.user.username %]
68<div id="sidebar">
69    [% INCLUDE 'includes/sidebar.tt' %]
70</div>
71[% END %]
72
73<div id="mainbox">
74
75[% content %]
76
77</div><!-- #mainbox -->
78
79<div id="footer" style="clear: both"></div>
80</body>
81</html>
Note: See TracBrowser for help on using the repository browser.