{% extends 'base.html' %} {% load static %} {% block title %}Review contests{% endblock %} {% block extrahead %} {% endblock %} {% block content %}

Review Contests

This page summarizes all unvalidated transactions that have contest submissions ready for admin approval. Transactions highlighted in orange indicates that the transaction has contests remaining to be approved.

By clicking on a transaction row, its contests will be listed in a new window. Contests are listed below the current transaction data, where a contest highlighted in red indicate the requested changes. Contests highlighted in green have previously been approved by an admin. If changes has been made to the original values of the transaction, a copy of the original transaction will be saved and highlighted in gray.

{% if sc_contests.exists %}

Staff Charges

{% regroup sc_contests by transaction as staff_charges %} {% for s in staff_charges %} {% endfor %}
ID Staff Member Customer Project Start End
{{ s.grouper.id }} {{ s.grouper.staff_member }} {{ s.grouper.customer }} {{ s.grouper.project }} {{ s.grouper.start }} {{ s.grouper.end }}
{% endif %} {% if ue_contests.exists %}

Usage Events

{% regroup ue_contests by transaction as usage_events %} {% for u in usage_events %} {% endfor %}
ID Operator Customer Project Start End Tool
{{ u.grouper.id }} {{ u.grouper.operator }} {{ u.grouper.user }} {{ u.grouper.project }} {{ u.grouper.start }} {{ u.grouper.end }} {{ u.grouper.tool }}
{% endif %} {% endblock %}