{% extends 'timepiece/time-sheet/base.html' %} {% load timepiece_tags %} {% load url from future %} {% block title %}Edit Invoice{% endblock %} {% block content %}

Edit Invoice for {{ project.name }} hours {% if from_date %} from {{ from_date }} to {{ to_date }} {% else %} through {{ to_date }}{% endif %}


{% csrf_token %} {{ invoice_form }}
Delete Invoice

Selected Entries

{% if entries %} {% for entry in entries %} {% ifchanged entry.start_time|date:"W" %} {% endifchanged %} {% ifchanged entry.start_time|date %} {% else %} {% endifchanged %} {% endfor %}
Date User Time Project Activity Hours Comments Remove
Week of {% week_start entry.start_time %}
{{ entry.start_time|date:"m/d/Y (D)" }}{{ entry.user.get_full_name }} {{ entry.start_time|date:"P" }} - {{ entry.end_time|date:"P" }} {{ entry.project.name }} {{ entry.activity.name }} {{ entry.hours }} {{ entry.comments|truncatewords:12 }} Remove
{% else %}

No entries were found

{% endif %} {% endblock %}