Debug Information
System Information
{% if debug_info %}
{% for key, value in debug_info.items() %}
{{ key }}: {{ value }}
{% endfor %}
{% endif %}
Session Data
{% if session %}
{% for key, value in session.items() %}
{{ key }}: {{ value }}
{% endfor %}
{% else %}
No session data available
{% endif %}
Files Available
documents.csv:
{% if documents_exists %}
File exists
{% else %}
File does not exist
{% endif %}
evaluations.csv:
{% if evaluations_exists %}
File exists
{% else %}
File does not exist
{% endif %}
Document Data
{% if documents %}
Found {{ documents|length }} document(s) available for evaluation
{% for doc in documents %}
Document {{ loop.index }}:
{{ doc.filename }} ({{ doc.description }})
{% endfor %}
{% else %}
No documents found or all documents have been evaluated
{% endif %}
Evaluations
{% if evaluations %}
Found {{ evaluations|length }} evaluation(s)
{% for eval in evaluations %}
Evaluation {{ loop.index }}:
{{ eval.document_title }} by {{ eval.investigator_name }}
{% endfor %}
{% else %}
No evaluations found
{% endif %}
Recent Errors
{% if errors %}
{% for error in errors %}
{{ error }}
{% endfor %}
{% else %}
No errors recorded
{% endif %}
Back to Home