diff options
-rw-r--r-- | cgi/templates/manage/recent.html | 4 | ||||
-rw-r--r-- | static/css/ib.css | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/cgi/templates/manage/recent.html b/cgi/templates/manage/recent.html index adbcd39..fd47592 100644 --- a/cgi/templates/manage/recent.html +++ b/cgi/templates/manage/recent.html @@ -25,9 +25,9 @@ por <b>#{post['name']}</b> <code>#{post['email']} #{post['tripcode']}</code> </div> - <?py if dir == 'zonavip': ?> + <?py if post['dir'] == 'zonavip': ?> <div class="message vip">#{post['message']}</div> - <?py else ?> + <?py else: ?> <div class="message">#{post['message']}</div> <?py #endif ?> <div class="actions"> diff --git a/static/css/ib.css b/static/css/ib.css index 318da59..5e2b158 100644 --- a/static/css/ib.css +++ b/static/css/ib.css @@ -259,7 +259,7 @@ textarea { display: block; } -.managertable .message .vip { +.managertable .message.vip { font-family: Mona, Monapo, IPAMonaPGothic, "MS PGothic", YOzFontAA97; font-size: 14px; } |