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

Last change on this file since 1758 was 1758, checked in by nanardon, 8 years ago

Ajout compte de statut par période

  • Property svn:keywords set to Id
File size: 2.3 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
35<link rel="stylesheet" href="[% c.uri_for('/static/js/jqplot/jquery.jqplot.css') %]" type="text/css">
36
37<script>
38$.jqplot.config.enablePlugins = true;
39</script>
40
41[% IF page.error %]
42<script type="text/javascript" language="JavaScript">
43window.onload = analert;
44function analert () {
45    alert('[% page.error | replace('\'', '\\\'') %]');
46}
47</script>
48[% END %]
49</head>
50
51<body>
52<!-- $Id$ -->
53
54<div id="header">
55
56<h1 style="">
57    [% l('IT management') %]
58    [% IF c.config.company %]
59    - [% c.config.company | html %]
60    [% END %]
61</h1>
62
63</div><!-- #header -->
64
65[% IF c.user.username %]
66<div id="sidebar">
67    [% INCLUDE 'includes/sidebar.tt' %]
68</div>
69[% END %]
70
71<div id="mainbox">
72
73[% content %]
74
75</div><!-- #mainbox -->
76
77<div id="footer" style="clear: both"></div>
78</body>
79</html>
Note: See TracBrowser for help on using the repository browser.