{% extends 'base.html' %} {% load static %} {% block title %}Transaction validation{% endblock %} {% block extrahead %} {% endblock %} {% block content %}
This page displays transactions conducted by {{ facility_name }} staff on behalf of users. You can filter by which project the transaction was conducted for, and when, by using the dropdown boxes below. If there are no unvalidated transactions shown, try changing the date range.
Each charge can be manually validated, which means that you can confirm that the charge is legitimate and correct, and no adjustment needs to be made to it. Press the green 'Validate' button on an individual row to validate a charge. Five days after the end of the transaction, the system will automatically validate the charge. Charges that have already been validated are highlighted in green.
Each charge can also be contested, which means that an adjustment is needed. Press the yellow 'Contest' button on an individual row to contest the charge. Charges that are already being contested and awaiting admin approval are highlighted in yellow.
ID | Staff member | Customer | Project | Start | End | Duration | Validate | Contest |
---|---|---|---|---|---|---|---|---|
{{ c.id }} | {{ c.staff_member }} | {{ c.customer }} | {{ c.project }} | {{ c.start|date:"l, F d, Y" }} @ {{ c.start|time:"g:i A" }} | {% if c.end is None %}In progress{% else %}{{ c.end|date:"l, F d, Y" }} @ {{ c.end|time:"g:i A" }}{% endif %} | {% if c.end is not None %}{{ c.start|timesince:c.end }}{% endif %} | {% if not c.validated %}{% endif %} | {% if not c.validated %}{% endif %} |
{{ area_access_record.area.name }} access | {{ area_access_record.start|date:"l, F d, Y" }} @ {{ area_access_record.start|time:"g:i A" }} | {% if area_access_record.end is None %}In progress{% else %}{{ area_access_record.end|date:"l, F d, Y" }} @ {{ area_access_record.end|time:"g:i A" }}{% endif %} | {% if area_access_record.end is not None %}{{ area_access_record.start|timesince:area_access_record.end }}{% endif %} |
ID | Operator | Customer | Project | Start | End | Duration | Tool | Validate | Contest |
---|---|---|---|---|---|---|---|---|---|
{{ u.id }} | {{ u.operator }} | {{ u.user }} | {{ u.project }} | {{ u.start|date:"l, F d, Y" }} @ {{ u.start|time:"g:i A" }} | {% if u.end is None %}In progress{% else %}{{ u.end|date:"l, F d, Y" }} @ {{ u.end|time:"g:i A" }}{% endif %} | {% if u.duration != 'In progress' %}{{ u.start|timesince:u.end }}{% endif %} | {{ u.tool }} | {% if not u.validated and u.id not in ue_contest_list %}{% endif %} | {% if not u.validated %}{% endif %} |