Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / vigiboard / templates / vigiboard.html @ 20367931

History | View | Annotate | Download (937 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="vigiboard_event_table.html" />
8
  <xi:include href="vigiboard_history_table.html" />
9

    
10
<head>
11
  <meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
12
  <title>Vigiboard</title>
13
  <link rel="stylesheet" type="text/css" href="${tg.url('/css/vigiboard_style.css')}" />
14
</head>
15

    
16
<body>
17
<py:with vars="flash=tg.flash_obj.render('flash', use_js=False)">
18
<div py:if="flash" py:content="XML(flash)" />
19
</py:with>
20
<div class="main_content">
21
        ${event_table(events,page,pages,id_first_row,id_last_row,total_row,event_edit_status_options)}
22
        <br /><br />
23
        ${history_table(history,hist_error)}
24
</div>
25

    
26
</body>
27
</html>