<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Upravljanje institucije - Šolar</title> <style> .tableFixHead { overflow-y: scroll; max-height: 306px; } .tableFixHead thead th { position: sticky; top: 0; } table { border-collapse: collapse; width: 100%; } th, td { padding: 8px 16px; border: 1px solid #ccc; } th { background: #eee; } h2 { color: blue; } </style> </head> <body> {% with messages = get_flashed_messages() %} {% if messages %} <div style="background: blue;"> {{ messages[0] }} </div> {% endif %} {% endwith %} <h3>Seznam vseh aktivnih uporabnikov</h3> <div class="tableFixHead"> <table> <thead> <tr> <th>ID</th> <th>Ime in priimek</th> <th>Email</th> </tr> </thead> <tbody> {% for item in users %} <tr> <td>{{item.id}}</td> <td>{{item.name}}</td> <td>{{item.email}}</td> </tr> {% endfor %} </table> </div> <h3>Seznam uporabnikov v vaši instituciji</h3> <div class="tableFixHead"> <table> <thead> <tr> <th>ID</th> <th>Ime in priimek</th> <th>Email</th> </tr> </thead> <tbody> {% for item in institution_users %} <tr> <td>{{item.id}}</td> <td>{{item.name}}</td> <td>{{item.email}}</td> </tr> {% endfor %} </table> </div> <br> <h3>Dodaj uporabnika instituciji</h3> <form action="/solar/addusertoinstitution" method="post"> <label for="user_id">ID uporabnika:</label> <input type="text" id="user_id" name="user_id"><br> <label for="role">Vloga v instituciji:</label> <select name="role" id="role"> <option value="coordinator">Koordinator/-ka</option> <option value="mentor">Mentor/-ica</option> <option value="other">Druga vloga</option> </select> <input type="submit" value="Dodeli"> </form> <h3>Odstrani uporabnika iz institucije</h3> <form action="/solar/deluserfrominstitution" method="post"> <label for="user_id">ID uporabnika:</label> <input type="text" id="user_id" name="user_id"><br> <input type="submit" value="Odstrani"> </form> <div> </div> </body>