{% extends 'base.html' %} {% load custom_tags_and_filters %} {% block title %}Staff charges{% endblock %} {% block content %}

Staff charges

{% if staff_charge %}

You are charging staff time to {{ staff_charge.customer }} for the project named {{ staff_charge.project }} since {{ staff_charge.start }}.


Here is a summary of the current charges:

{% for charge in charges %} {% endfor %}
Type Start End
{{ charge.type }} {{ charge.start }} {{ charge.end|default:'' }}
{% endif %} {% block staff_charges_content %} {% endblock %} {% endblock %}