blob: 1089cdf7dd7ccdfc895d546f209a500e3d383e03 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?py include('templates/base_top.html') ?>
<?py include('templates/manage/menu.html') ?>
<center>
<div style="margin:0.5em 0;"><strong>BANDEJA DE ENTRADA</strong>
<br />
Denuncias:
<?py if reports > 0: ?>
<a href="#{cgi_url}manage/reports" style="color:red;font-weight:bold;">#{reports}</a>
<?py else: ?>
0
<?py #endif ?></div>
<hr />
<strong>NOTICIAS DEL STAFF</strong>
</center>
<dl style="margin:0 2.5%;">
<?py for post in posts: ?>
<dt class="info"><strong class="subj">#{post['title'] if post['title'] else "Sin asunto"}</strong><br />#{post['id']} : <span class="info"><b class="name">${post['name']}</b> : <span class="date" data-unix="${post['timestamp']}"}>${post['timestamp_formatted']}</span></dt>
<dd>#{post['message']}</dd>
<br />
<?py #endfor ?>
</dl>
<hr />
<?py include('templates/base_bottom.html') ?>
|