tailbone/tailbone/templates/messages/inbox/index.mako
2016-12-28 14:51:16 -06:00

29 lines
758 B
Mako

## -*- coding: utf-8 -*-
<%inherit file="/messages/index.mako" />
<%def name="title()">Message Inbox</%def>
<%def name="head_tags()">
${parent.head_tags()}
<script type="text/javascript">
destination = "Archive";
</script>
</%def>
<%def name="context_menu_items()">
${parent.context_menu_items()}
<li>${h.link_to("Go to my Message Archive", url('messages.archive'))}</li>
<li>${h.link_to("Go to my Sent Messages", url('messages.sent'))}</li>
</%def>
<%def name="grid_tools()">
${h.form(url('messages.move_bulk'), name='move-selected')}
${h.csrf_token(request)}
${h.hidden('destination', value='archive')}
${h.hidden('uuids')}
<button type="submit">Move 0 selected to Archive</button>
${h.end_form()}
</%def>
${parent.body()}