]> git.sur5r.net Git - bacula/bacula/blob - gui/bacula-web/templates/backupjob-report.tpl
bacula-web: Added total transfered files in Backup job report page
[bacula/bacula] / gui / bacula-web / templates / backupjob-report.tpl
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
2   "http://www.w3.org/TR/html4/loose.dtd">
3 <html lang="en">
4 <head>
5 <title>bacula-web</title>
6 <link rel="stylesheet" type="text/css" href="style/default.css">
7 {literal}
8 <script type="text/javascript">
9         function OpenWin(URL,wid,hei) {
10                 window.open(URL,"window1","width="+wid+",height="+hei+",scrollbars=yes,menubar=no,location=no,resizable=no")
11         }
12 </script>
13 {/literal}
14
15 </head>
16 <body>
17 {popup_init src='./external_packages/js/overlib.js'}
18 {include file=header.tpl}
19
20   <div id="nav">
21     <a href="index.php" title="Back to the dashboard">Dashboard</a> > Backup Job Report
22   </div>
23
24   <div id="main_center">
25   
26   <div class="box">
27         <p class="title">Backup Job Report</p>
28         
29         <table>
30                 <tr>
31                         <td width="150">Backup Job name:</td>
32                         <td>{$backupjob_name}</td>
33                 </tr>
34                 <tr>
35                         <td>Period:</td>
36                         <td>ppp{$backupjob_period}</td>
37                 </tr>
38                 <tr>
39                         <td>Transfered Bytes</td>
40                         <td>{$backupjob_bytes} GB</td>
41                 </tr>
42                 <tr>
43                         <td>Transfered Files</td>
44                         <td>{$backupjob_files}</td>
45                 </tr>
46
47         </table>
48   </div> <!-- end div class=box -->
49   
50   <!-- Last jobs list -->
51   <div class="box">
52         <p class="title">Last jobs</p>
53   </div> <!-- end div class=box -->
54   
55   <!-- Transfered Bytes graph -->
56   <div class="box">
57         <p class="title">Transfered Bytes (last week in GB)</p>
58         <img src="{$graph_stored_bytes}" alt="" />
59   </div> <!-- end div class=box -->
60
61   <!-- Transfered Files graph -->
62   <div class="box">
63         <p class="title">Transfered Files (last week)</p>
64         <img src="{$graph_stored_files}" alt="" />
65   </div> <!-- end div class=box -->
66   
67   </div> <!-- end div id=main_center -->
68
69 {include file="footer.tpl"}