tailbone/tailbone/templates/shifts/schedule_print.mako
Lance Edgar f97b26506f Add printer-friendly view for "full" employee schedule
i.e. whatever version of that the user happens to be currently viewing
2016-11-19 22:23:45 -06:00

21 lines
743 B
Mako

## -*- coding: utf-8 -*-
<%namespace file="/shifts/lib.mako" import="timesheet" />
<%namespace file="/shifts/base.mako" import="render_day" />
<html>
<head>
## TODO: this seems a little hacky..?
${h.stylesheet_link(request.static_url('tailbone:static/css/normalize.css'))}
${h.stylesheet_link(request.static_url('tailbone:static/css/base.css'))}
${h.stylesheet_link(request.static_url('tailbone:static/css/newgrids.css'))}
${h.stylesheet_link(request.static_url('tailbone:static/css/timesheet.css'))}
</head>
<body>
<h1>
${store if store else "(all stores)"} -
${department if department else "(all departments)"} -
${week_of}
</h1>
${timesheet(render_day=render_day)}
</body>
</html>