<%inherit file="/base/base.html"/> <%namespace file="/utils/sidebars.html" name="sidebars" /> <%def name="javascripts()" filter="trim"> <%namespace file="/utils/format.html" name="f" /> <%def name="task_table(tasks)" filter="trim"> % if len(tasks) > 0: % for task in tasks: % if task.case.private is True: % else: % endif % if current_user in task.investigators: % if task.status == task_statuses['start']: % else: % endif % elif current_user in task.QAs and task.status == task_statuses['qa']: % endif % endfor
Case Name Task Name Task Type Task Created Status Principle Forensic Investigator Secondary Forensic Investigator
${task.case.case_name|h}${task.case.case_name|h}${task.task_name|h} ${task.task_type.task_type|h} ${task.date_created|h} ${task.status|h} % if task.principle_investigator != None: ${task.principle_investigator.fullname|h} % else: None % endif % if task.secondary_investigator != None: ${task.secondary_investigator.fullname|h} % else: None % endif Start taskWork on taskQA task
% else:

None.

% endif

Tasks for ${current_user.fullname|h}

% if all_tasks:

Outstanding Tasks as principle Forensic Investigator

${self.task_table(user_primary_inv)}

Outstanding Tasks as secondary Forensic Investigator

${self.task_table(user_secondary_inv)}

All Open Tasks

${self.task_table(all_tasks)} % else:

There are no tasks set up yet.

% endif