diff options
author | Renard | 2020-03-28 14:21:55 -0300 |
---|---|---|
committer | Renard | 2020-03-29 12:58:38 -0300 |
commit | cbf5fff96766ecc2c8101a96ae2c00fe72337550 (patch) | |
tree | 730121df8e035aeb940475fcc4a2d896d8951cb4 /cgi/templates/manage | |
parent | a66c0fdc59cdea9843125a1de4673a89b7ab413e (diff) | |
download | weabot-cbf5fff96766ecc2c8101a96ae2c00fe72337550.tar.gz weabot-cbf5fff96766ecc2c8101a96ae2c00fe72337550.tar.xz weabot-cbf5fff96766ecc2c8101a96ae2c00fe72337550.zip |
CSS: managetable
Diffstat (limited to 'cgi/templates/manage')
-rw-r--r-- | cgi/templates/manage/recent.html | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/cgi/templates/manage/recent.html b/cgi/templates/manage/recent.html index d3df21c..5a6de80 100644 --- a/cgi/templates/manage/recent.html +++ b/cgi/templates/manage/recent.html @@ -18,12 +18,11 @@ <?py #endif ?> </td> <td> - <div class="recentPostHeader" style="display: block; margin-bottom: 0.5em;"> - ##{post['id']} <b>#{post['subject']}</b> en <i>#{post['board_name']}</i> hace <div name="timestamp" data-ts="#{post['timestamp']}">#{post['timestamp_formatted']}</div></br> - <b>#{post['name']}</b> <code>#{post['email']} #{post['tripcode']}</code> + <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> </div> - <div style="display: block">#{post['message']}</div> - <div style="display: block; margin-top: 0.5em; font-size: 0.75em;"></div> + <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 ?> |