Fix code to send notification to all recipients.
[savadur.git] / templates / list.thtml
blobe8a0c2c1d6a354a9ad58a515e31ce2bb89a8c89f
1 <?xml version="1.0" encoding="utf-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml">
5 <head>
6 <title>Savadur : Projects list</title>
8 <meta name="description"
9 content="List of projects " />
11 <meta http-equiv="Content-Type"
12 content="text/html; charset=utf-8" />
14 <meta http-equiv="refresh" content="15;url=/">
16 <style type="text/css">
17 @import url("/css/style.css");
18 </style>
19 </head>
20 <body id="menu_page">
22 <h1>Savadur running on @_SERVER_NAME_@</h1>
24 <h2>Projects
25 <a href="/rss/all" title="Projects activities feed">
26 <img src="/img/rss.png" alt="RSS" />
27 </a>
28 </h2>
30 <div id="content">
32 <table class="list">
33 <tr>
34 <th>Projects Name</th>
35 <th>Next Run</th>
36 <th>Scenarios (Clients list)</th>
37 </tr>
38 @@TABLE@@
39 <tr>
40 <td class="project_name"><a href="/@_PROJECTS_@">@_PROJECTS_@</a></td>
41 <td>@_PROJECTS_NEXT_RUN_@</td>
42 <td>
43 <ul>
44 @@TABLE@@
45 @@IF@@ @_SCENARIOS_@ /= ""
46 <li>@_SCENARIOS_@ (@_CLIENTS_@)</li>
47 @@END_IF@@
48 @@END_TABLE@@
49 </ul>
50 </td>
51 </tr>
52 @@END_TABLE@@
53 </table>
55 <h2>Bots</h2>
57 @@IF@@ @_CLIENTS_NAME_@ = ""
58 <h2>No bots registered</h2>
59 @@ELSE@@
61 <table class="list">
62 <tr><th>Bot</th><th>Status</th><th>Running</th></tr>
63 @@TABLE@@
64 <tr>
65 <td>@_CLIENTS_NAME_@</td>
66 <td>@_CLIENTS_STATUS_@</td>
67 <td>@_CLIENTS_RUNNING_@</td>
68 </tr>
69 @@END_TABLE@@
70 </table>
71 @@END_IF@@
72 <p class="right"><a href="/ping">Ping clients</a></p>
74 </div>
75 </body>
76 </html>