Learn by Directing AI
All materials

admin.html

htmladmin.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Admin - Reseau Sante du Nord</title>
    <link rel="stylesheet" href="/static/style.css">
</head>
<body>
    <nav class="top-nav">
        <span class="nav-brand">Reseau Sante du Nord - Admin</span>
    </nav>
    <div class="content">
        <h2>System Administration</h2>
        <h3>Staff Accounts</h3>
        <table class="data-table">
            <thead><tr><th>Name</th><th>Email</th><th>Role</th><th>Clinic</th></tr></thead>
            <tbody>
                {% for s in staff %}
                <tr><td>{{ s[1] }}</td><td>{{ s[2] }}</td><td>{{ s[4] }}</td><td>{{ s[5] }}</td></tr>
                {% endfor %}
            </tbody>
        </table>
        <h3>Clinics</h3>
        <table class="data-table">
            <thead><tr><th>Name</th><th>Location</th><th>Phone</th></tr></thead>
            <tbody>
                {% for c in clinics %}
                <tr><td>{{ c[1] }}</td><td>{{ c[2] }}</td><td>{{ c[3] }}</td></tr>
                {% endfor %}
            </tbody>
        </table>
    </div>
</body>
</html>