98 lines
2.6 KiB
HTML
98 lines
2.6 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Upravljanje institucije - Šolar</title>
|
||
|
<style>
|
||
|
.tableFixHead {
|
||
|
overflow-y: auto;
|
||
|
height: 206px;
|
||
|
}
|
||
|
.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;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
{% with messages = get_flashed_messages() %}
|
||
|
{% if messages %}
|
||
|
<div>
|
||
|
{{ 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>Dodeli 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="moderator">Moderator</option>
|
||
|
<option value="user">Uporabnik</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>
|