File size: 1,163 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
{% extends "base_layout.html" %}

{% block title %}Settings - InterroGen{% endblock %}

{% block page_content %}
<div class="heading-container">
    <h1 class="h3">Application Settings</h1>
</div>

<div class="card">
    <div class="card-header">
        <i class="bi bi-gear-fill me-2"></i>Configuration
    </div>
    <div class="card-body">
        <p class="text-muted">This section will allow administrators to configure various aspects of the InterroGen application.</p>
        
        <h5 class="mt-4">Potential Settings:</h5>
        <ul>
            <li>User management and authentication settings.</li>
            <li>LLM provider and model selection (if applicable in the future).</li>
            <li>Default country/region settings.</li>
            <li>Notification preferences.</li>
            <li>Data retention policies.</li>
        </ul>
        <p><em>This page is currently under development. Full settings management will be available soon.</em></p>
    </div>
</div>

{% endblock %}

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