{% extends "base.html" %} {% block css %} tr:nth-child(odd) { background-color:#eee; } tr:nth-child(even) { background-color:#fff; } table.border{ width: 100%; margin:auto; border-collapse: collapse; border: 3px solid #666666; } td.border { padding: 2px; padding-left: 6px; border: 2px solid #666666; } td.right { width: 176px; } a { color: #339; text-decoration: none; } a:hover { text-decoration: underline; } {% endblock %} {% block content %}

View Approved Time Cards

Download Details as Excel Spreadsheet (.xlsx) This is not an official bill and is meant for your convenience only. {% for timesheet in timeSheets %} {% endfor %}
Student Name Date Hours For Pay? Make Up?
{{ timesheet.student }} {{ timesheet.date }} {{ timesheet.hours }} {{ timesheet.for_pay|yesno }} {{ timesheet.make_up|yesno }}
{% endblock %}