diff options
author | Renard | 2020-03-28 14:12:36 -0300 |
---|---|---|
committer | Renard | 2020-03-28 14:12:36 -0300 |
commit | c49e4365dcabaac518fc1275d92705af7dbfde63 (patch) | |
tree | 7231d5f997a75ab531af267dec130b715845186a /cgi/templates/manage | |
parent | f62aec2e3c7f2e9c26eb55043338bf04c6aa0278 (diff) | |
download | weabot-c49e4365dcabaac518fc1275d92705af7dbfde63.tar.gz weabot-c49e4365dcabaac518fc1275d92705af7dbfde63.tar.xz weabot-c49e4365dcabaac518fc1275d92705af7dbfde63.zip |
Cambios en vista de posts recientes
Diffstat (limited to 'cgi/templates/manage')
-rw-r--r-- | cgi/templates/manage/recent.html | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/cgi/templates/manage/recent.html b/cgi/templates/manage/recent.html index 3fed05f..38d9a75 100644 --- a/cgi/templates/manage/recent.html +++ b/cgi/templates/manage/recent.html @@ -4,8 +4,6 @@ <div class="replymode">Lista de posts recientes</div> <table class="managertable"> <thead> - <th>ID</th> - <th>Board</th> <th>Archivo</th> <th>Timestamp</th> <th>Mensaje</th> @@ -15,8 +13,6 @@ <tbody> <?py for post in posts: ?> <tr> - <td>#{post['id']}</td> - <td>/#{post['dir']}/</td> <td> <?py if post['file']: ?><a href="/${post['dir']}/src/#{post['file']}" target="_blank"><img src="/${post['dir']}/mobile/${post['thumb']}" /></a> @@ -26,8 +22,9 @@ <div name="timestamp" data-ts="#{post['timestamp']}">#{post['timestamp_formatted']}</div> </td> <td> - <div style="display: block; margin-bottom: 0.5em; font-weight: bold;">#{post['subject']} <i>#{post['name']}</i> <code>#{post['email']}</code> - #{post['tripcode']} + <div class="recentPostHeader" style="display: block; margin-bottom: 0.5em;"> + #{post['id']} <b>#{post['subject']}</b> en <i>#{post['board_name']}</i></br> + <b>#{post['name']}</b> <code>#{post['email']} #{post['tripcode']}</code> </div> <div style="display: block">#{post['message']}</div> <?py if post['parentid'] != '0': ?> @@ -35,6 +32,7 @@ href="#{cgi_url}manage/mod/${post['dir']}?thread=#{post['parentid']}">Ver hilo completo</a> </div> <?py #endif ?> + <div name="timestamp" data-ts="#{post['timestamp']}">#{post['timestamp_formatted']}</div> </td> <td> <a href="#{cgi_url}manage/ipshow?ip=#{post['ip']}">#{post['ip']}</a> |