{% extends "layout.html" %} {% load app_filters %} {% load humanize %} {% load tz %} {% block content %}

{{ report_title }}

Please click "Edit" next to the entry you would like to revise
Date
Team
Shift
Job
Hours
Qty
{% if results %} {% for result in results %}
{{ result.date|date:"SHORT_DATE_FORMAT" }}
{{ result.team }}
{{ result.shift }}
{{ result.job_id }}
{{ result.hrs_alc }}
{{ result.qty }}
edit
{% endfor %} {% else %}

Your search produced no results. Please modify your search criteria.

{% endif %}
{% csrf_token %}
{% endblock content%}