{% extends 'remote_work/remote_work_base.html' %} {% load custom_tags_and_filters %} {% block title %}Staff charge{% endblock %} {% block staff_charges_tab_class %}active{% endblock %} {% block tab_content %} {% if staff_charge %}

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

{% url "edit_staff_charge_note" as edit_staff_charge_note_url %} {% button type="save" size="small" submit=False value=staff_charge.note|yesno:"Update,Save" onclick="ajax_post('"|concat:edit_staff_charge_note_url|concat:"', {'staff_charge_note': $('#staff_charge_note').val()}, undefined, undefined, function(){location.reload()})" %}


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 %}