21 lines
743 B
Mako
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>
|
|
|