Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / dashboard / templates / dashboard.html @ 805cc54a

History | View | Annotate | Download (913 Bytes)

1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
2
                      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml"
4
      xmlns:py="http://genshi.edgewall.org/"
5
      xmlns:xi="http://www.w3.org/2001/XInclude">
6

    
7
  <xi:include href="master.html" />
8
  <xi:include href="dashboard_event_table.html" />
9
  <xi:include href="dashboard_history_table.html" />
10

    
11
<head>
12
  <meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
13
  <title>Welcome to TurboGears 2.0, standing on the 
14
  shoulders of giants, since 2007</title>
15
<link rel="stylesheet" type="text/css" href="${tg.url('/css/style_dash.css')}" />
16
</head>
17

    
18
<body>
19

    
20
<div class="main_content">
21

    
22
        ${event_table(events,page,pages,id_first_row,id_last_row,total_row,event_edit_status_options)}
23
        <br /><br />
24
        ${history_table(history,hist_error)}
25
</div>
26

    
27
</body>
28
</html>