summaryrefslogtreecommitdiff
path: root/template/log.st
blob: 976d0e690a58a25b6bf830dff7019da4bf27cb2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<html>
  <head>
    <title>$roomname$ Log</title>
    $head()$
    <style>
      body {
      margin: 100px 50px;
      }
    </style>
    <script>
      jQuery(document).ready(initLog);
    </script>
  </head>
  <body>
    $banner()$
    <h2>Log</h2>

    <div style="text-align: right;">
    $if(prev)$
    <a href="/$roomkey$/log/$prev$">PREV DUMPS</a>
    $endif$
    &nbsp;&nbsp;&nbsp;
    $if(next)$
    <a href="/$roomkey$/log/$next$">MORE DUMPS</a>
    $endif$
    </div>

    $if(dumps)$
    $dumps: { d | $logged_dump(dump=d)$ }$
    $else$
    No dumps!
    $endif$

    <div style="text-align: right;">
    $if(prev)$
    <a href="/$roomkey$/log/$prev$">PREV DUMPS</a>
    $endif$
    &nbsp;&nbsp;&nbsp;
    $if(next)$
    <a href="/$roomkey$/log/$next$">MORE DUMPS</a>
    $endif$
    </div>

  </body>
</html>