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

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

add tools to search employments

  • Property svn:keywords set to Id
File size: 2.7 KB
RevLine 
[2001]1<!DOCTYPE html>
[101]2<html>
3<head>
[1969]4<title>[% IF c.config.company %][% c.config.company _ ' ' | html %][% END %]Accounts / [% page.title %]</title>
[101]5<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
[246]6<link rel="stylesheet" href="[% c.uri_for('/static', 'style.css') %]?" type="text/css">
[976]7<link rel="stylesheet" href="[% c.uri_for('/static', 'struct.css') %]?" type="text/css">
[101]8<link rel="icon" href="[%- c.uri_for('/static', 'images', 'favicon.ico') -%]" type="image/x-icon">
9
[1329]10<script src="[% c.uri_for('/static', 'js', 'jquery', 'external/jquery/jquery.js') %]"></script>
[1602]11
[1329]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
[1362]15<script src="[% c.uri_for('/static', 'js', 'jqplot', 'jquery.jqplot.js') %]"></script>
[1481]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',
[1485]23    'jqplot.enhancedLegendRenderer.js',
[1679]24    'jqplot.canvasTextRenderer.js',
25    'jqplot.canvasAxisTickRenderer.js',
26    'jqplot.categoryAxisRenderer.js',
[1758]27    'jqplot.canvasAxisTickRenderer.js',
[1481]28    ] %]
29<script src="[% c.uri_for('/static', 'js', 'jqplot', 'plugins', plugins) %]"></script>
30[%- END %]
31
[1484]32<script src="[% c.uri_for('/static', 'js', 'd3', 'd3.v3.js') %]"></script>
[1583]33<script src="[% c.uri_for('/static', 'js', 'timeline', 'timeframe.js') %]"></script>
[1939]34<script src="[% c.uri_for('/static', 'js', 'jquery', 'jquery.orgchart.js') %]"></script>
[2121]35<script src="[% c.uri_for('/static', 'js', 'jQRangeSlider', 'jQAllRangeSliders-min.js') %]"></script>
36
[1939]37<link rel="stylesheet" href="[% c.uri_for('/static/js/jquery/jquery.orgchart.css') %]" type="text/css">
[1362]38<link rel="stylesheet" href="[% c.uri_for('/static/js/jqplot/jquery.jqplot.css') %]" type="text/css">
[2121]39<link rel="stylesheet" href="[% c.uri_for('/static/js/jQRangeSlider/css/classic.css') %]" type="text/css">
[1362]40
[2121]41
[1679]42<script>
[2121]43$(function() {
44    $.jqplot.config.enablePlugins = true;
45});
[1679]46</script>
47
[1338]48[% IF page.error %]
[861]49<script type="text/javascript" language="JavaScript">
50window.onload = analert;
51function analert () {
52    alert('[% page.error | replace('\'', '\\\'') %]');
53}
[1338]54</script>
[861]55[% END %]
[101]56</head>
[507]57
[101]58<body>
59<!-- $Id$ -->
[976]60
61<div id="header">
62
63<h1 style="">
[1546]64    [% l('IT management') %]
[976]65    [% IF c.config.company %]
[1127]66    - [% c.config.company | html %]
[861]67    [% END %]
[976]68</h1>
[861]69
[976]70</div><!-- #header -->
71
[1338]72[% IF c.user.username %]
[1162]73<div id="sidebar">
[977]74    [% INCLUDE 'includes/sidebar.tt' %]
[976]75</div>
[1338]76[% END %]
[976]77
[1162]78<div id="mainbox">
[976]79
[1326]80[% content %]
81
82</div><!-- #mainbox -->
83
84<div id="footer" style="clear: both"></div>
85</body>
86</html>
Note: See TracBrowser for help on using the repository browser.