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

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

Add account per contract graph

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