nicer admin menu

This commit is contained in:
Leon Noe Jovan 2022-01-23 22:28:21 +01:00
parent 313f95fac8
commit 30f96d4fdc
3 changed files with 28 additions and 10 deletions

View File

@ -3,6 +3,10 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Admin panel - Šolar</title> <title>Admin panel - Šolar</title>
<link rel="stylesheet" href="../static/css/header.css" type="text/css">
<link rel="stylesheet" href="../static/css/form.css" type="text/css">
<link rel="stylesheet" href="../static/css/simple-grid.css" type="text/css">
<link rel="stylesheet" href="../static/css/manage-institution.css" type="text/css">
<style> <style>
.tableFixHead { .tableFixHead {
overflow-y: scroll; overflow-y: scroll;
@ -30,7 +34,21 @@
</style> </style>
</head> </head>
<body> <body>
<a href="../oddaja">Nazaj na oddajo</a> <header>
<div class="logo"><a href="../"><img src="../static/image/logo-white.svg"/></a></div>
<div class="menu-items">
<a href="../logout">Odjava</a>
{% if is_institution_coordinator %}
<a href="../manage-institution">Upravljaj z institucijo</a>
{% endif %}
{% if is_admin %}
<a href="../admin">Administracijski meni</a>
{% endif %}
<a href="../oddaja">Oddaja</a>
<a href="https://slovenscina.eu/" target="_blank">Več informacij</a>
</div>
</header>
<div class="container" style="margin-top:8rem;">
{% with messages = get_flashed_messages() %} {% with messages = get_flashed_messages() %}
{% if messages %} {% if messages %}
<div style="background: blue;"> <div style="background: blue;">
@ -389,6 +407,7 @@
<button id="button-submit" type="submit">Posodobi</button> <button id="button-submit" type="submit">Posodobi</button>
</form> </form>
</div>
<script> <script>
var selectPredmet = document.getElementById("predmet"); var selectPredmet = document.getElementById("predmet");
var selectVrsta = document.getElementById("vrsta"); var selectVrsta = document.getElementById("vrsta");

View File

@ -49,7 +49,6 @@
</div> </div>
</header> </header>
<div class="container" style="margin-top:8rem;"> <div class="container" style="margin-top:8rem;">
<a href="../oddaja">Nazaj na oddajo</a>
{% with messages = get_flashed_messages() %} {% with messages = get_flashed_messages() %}
{% if messages %} {% if messages %}
<div style="background: blue;"> <div style="background: blue;">

View File

@ -45,14 +45,14 @@
</div> </div>
</div>--> </div>-->
{% set map_program = { {% set map_program = {
"OS" : "Osnovna šola (OŠ)", "OS" : "Osnovna šola",
"SSG" : "Splošna in strokovna gimnazija (SGG)", "SSG" : "Splošna in strokovna gimnazija",
"MGP" : "Mednarodni gimnazijski programi (MGP)", "MGP" : "Mednarodni gimnazijski programi",
"ZG" : "Zasebne gimnazije (ZG)", "ZG" : "Zasebne gimnazije",
"NPI" : "Nižje poklicno izobraževanje (NPI)", "NPI" : "Nižje poklicno izobraževanje",
"SPI" : "Srednje poklicno izobraževanje (SPI)", "SPI" : "Srednje poklicno izobraževanje",
"SSI" : "Srednje strokovno izobraževanje (SSI)", "SSI" : "Srednje strokovno izobraževanje",
"PTI" : "Poklicno-tehnično izobraževanje (PTI)" "PTI" : "Poklicno-tehnično izobraževanje"
}%} }%}
{% set map_subject = { {% set map_subject = {
"SLO" : "Slovenščina", "SLO" : "Slovenščina",