File size: 1,301 Bytes
e6ecc60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{% extends "base_layout.html" %}

{% block title %}Help & Support - InterroGen{% endblock %}

{% block page_content %}
<div class="heading-container">
    <h1 class="h3">Help & Support</h1>
</div>

<div class="card">
    <div class="card-header">
        <i class="bi bi-question-circle-fill me-2"></i>Frequently Asked Questions & Documentation
    </div>
    <div class="card-body">
        <p class="text-muted">This section will provide help documentation, FAQs, and support resources for using the InterroGen application.</p>
        
        <h5 class="mt-4">Topics to be Covered:</h5>
        <ul>
            <li>Getting Started Guide.</li>
            <li>How to create and manage cases.</li>
            <li>Generating and interpreting interrogation questions.</li>
            <li>Generating and understanding investigation reports.</li>
            <li>Using regional guidelines.</li>
            <li>Troubleshooting common issues.</li>
            <li>Contacting support.</li>
        </ul>
        <p><em>This page is currently under development. Comprehensive help resources will be available soon.</em></p>
    </div>
</div>

{% endblock %}

{% block scripts %}
<script>
    // Add any help page specific JS here if needed
    console.log("Help page loaded");
</script>
{% endblock %}