//- vim:ts=4:sw=4: doctype html html head include head title Outbox style. td a { display: block } @media (max-width: 400px) { td:nth-child(3) { display: none } th:nth-child(3) { display: none } } script. function delete_all() { let warning = "Are you sure you want to delete ALL the messages?" if (window.confirm(warning)) window.location.href = "/message/delete/outbox" } body include header article h1 Outbox p a(href="/message/send") Send message table.wide.striped thead tr th From th Subject th Date tbody each row in messages tr td: a.black(href="/user/"+row.to_name)= row.to_name td.e: a.black(href="/message/read/"+row.message_id)= row.subject td.w= row.time else tr td(colspan=3) No messages. p button(onclick="delete_all()") Delete all