<%inherit file="/base/base.html"/> <%namespace file="/utils/forms.html" name="forms" /> <%namespace file="/utils/sidebars.html" name="sidebars" /> <%def name="javascripts()" filter="trim">

QA Task ${task.task_name|h}

% if success:

Success!

The task has been QA ${qa_result|h}. The forensic investigators have been alerted.

Back to task summary.

% else: % if len(current_user.messages_received) > 0:

Messages from Investigators regarding this QA

% for mail in current_user.messages_received:
From ${mail.sender.fullname|h}
Date Sent ${mail.date|h}
Subject ${mail.subject|h}
Body ${mail.body|h}
% endfor % endif

QA Task

${forms.formTextArea("Notes", "notes", "notes", "form_label", "addeditcase", first=True)} <% options = [('qa_pass', 'QA Pass'),('qa_fail', 'QA Fail')] %> ${forms.formRadioButtons("QA pass/fail", options, "qa_decision", "qa_decision", "form_label", "addeditcase", "radio")}

% endif