diff options
-rw-r--r-- | cgi/templates/manage/recent.html | 19 | ||||
-rw-r--r-- | static/css/ib.css | 4 |
2 files changed, 18 insertions, 5 deletions
diff --git a/cgi/templates/manage/recent.html b/cgi/templates/manage/recent.html index 5a6de80..adbcd39 100644 --- a/cgi/templates/manage/recent.html +++ b/cgi/templates/manage/recent.html @@ -19,14 +19,23 @@ </td> <td> <div class="recentPostHeader"> - ##{post['id']} <b>#{post['subject']}</b> en <i>#{post['board_name']}</i> hace <span name="timestamp" data-ts="#{post['timestamp']}">#{post['timestamp_formatted']}</span> por <b>#{post['name']}</b> <code>#{post['email']} #{post['tripcode']}</code> + ##{post['id']} <b>#{post['subject']}</b> en + <i>#{post['board_name']}</i> hace + <span name="timestamp" data-ts="#{post['timestamp']}">#{post['timestamp_formatted']}</span> + por <b>#{post['name']}</b> + <code>#{post['email']} #{post['tripcode']}</code> </div> + <?py if dir == 'zonavip': ?> + <div class="message vip">#{post['message']}</div> + <?py else ?> <div class="message">#{post['message']}</div> - <div class="actions"> - <?py if post['parentid'] != '0': ?> - <a href="#{cgi_url}manage/mod/${post['dir']}?thread=#{post['parentid']}">Ver hilo completo</a> <?py #endif ?> - <a href="#{cgi_url}manage/goto/?dir=${post['dir']}&type=#{post['board_type']}&thread=#{post['parentid']}">Ver hilo en BaI</a> + <div class="actions"> + <?py if post['parentid'] != '0': ?> + <a href="#{cgi_url}manage/mod/${post['dir']}?thread=#{post['parentid']}">Ver hilo completo</a> + <?py #endif ?> + <a href="#{cgi_url}manage/goto/?dir=${post['dir']}&type=#{post['board_type']}&thread=#{post['parentid']}">Ver + hilo en BaI</a> </div> </td> <td> diff --git a/static/css/ib.css b/static/css/ib.css index 16a4ba5..318da59 100644 --- a/static/css/ib.css +++ b/static/css/ib.css @@ -257,9 +257,13 @@ textarea { } .managertable .message { display: block; +} + +.managertable .message .vip { font-family: Mona, Monapo, IPAMonaPGothic, "MS PGothic", YOzFontAA97; font-size: 14px; } + .managertable .actions { display: block; margin-top: 0.5em; |