{% extends "base_layout.html" %} {% block title %}Interrogation Sessions - InterroGen{% endblock %} {% block page_content %}

Interrogation Sessions

{# Add a button or link to initiate a new interrogation if applicable, or link to cases #} View Cases
All Recorded Interrogation Sessions
{% if sessions %}
{% for session in sessions | sort(attribute='session_date', reverse=True) %} {% endfor %}
Session ID Case ID Suspect Session Date Questions Generated Summary Notes Actions
{{ session.id }} {{ session.case.case_id_display }} {{ session.case.suspect_name }} {{ session.session_date.strftime('%Y-%m-%d %H:%M') }} {{ session.generated_questions | length }} {{ session.summary_notes | truncate(100, True) if session.summary_notes else 'N/A' }} View Details in Case
{% else %}

No interrogation sessions found in the system.

Interrogation questions are generated from the individual case detail pages.

Go to Cases
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}