{% extends 'base.html' %} {% load static %} {% block title %}Transaction validation{% endblock %} {% block extrahead %} {% endblock %} {% block content %}

Transaction Validation

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.

Each charge can be validated, which means that you have confirmed 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. 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 are highlighted in yellow


Usage Events

{% for u in usage %} {% endfor %}
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:"h:i A" }} {% if u.end is None %}In progress{% else %}{{ u.end|date:"l, F d, Y" }} @ {{ u.end|time:"h: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 contest_list %}{% endif %} {% if not u.validated %}{% endif %}
{% endblock %}