nicer admin menu
This commit is contained in:
parent
313f95fac8
commit
30f96d4fdc
|
@ -3,6 +3,10 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<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>
|
||||
.tableFixHead {
|
||||
overflow-y: scroll;
|
||||
|
@ -30,7 +34,21 @@
|
|||
</style>
|
||||
</head>
|
||||
<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() %}
|
||||
{% if messages %}
|
||||
<div style="background: blue;">
|
||||
|
@ -389,6 +407,7 @@
|
|||
|
||||
<button id="button-submit" type="submit">Posodobi</button>
|
||||
</form>
|
||||
</div>
|
||||
<script>
|
||||
var selectPredmet = document.getElementById("predmet");
|
||||
var selectVrsta = document.getElementById("vrsta");
|
||||
|
|
|
@ -49,7 +49,6 @@
|
|||
</div>
|
||||
</header>
|
||||
<div class="container" style="margin-top:8rem;">
|
||||
<a href="../oddaja">Nazaj na oddajo</a>
|
||||
{% with messages = get_flashed_messages() %}
|
||||
{% if messages %}
|
||||
<div style="background: blue;">
|
||||
|
|
|
@ -45,14 +45,14 @@
|
|||
</div>
|
||||
</div>-->
|
||||
{% set map_program = {
|
||||
"OS" : "Osnovna šola (OŠ)",
|
||||
"SSG" : "Splošna in strokovna gimnazija (SGG)",
|
||||
"MGP" : "Mednarodni gimnazijski programi (MGP)",
|
||||
"ZG" : "Zasebne gimnazije (ZG)",
|
||||
"NPI" : "Nižje poklicno izobraževanje (NPI)",
|
||||
"SPI" : "Srednje poklicno izobraževanje (SPI)",
|
||||
"SSI" : "Srednje strokovno izobraževanje (SSI)",
|
||||
"PTI" : "Poklicno-tehnično izobraževanje (PTI)"
|
||||
"OS" : "Osnovna šola",
|
||||
"SSG" : "Splošna in strokovna gimnazija",
|
||||
"MGP" : "Mednarodni gimnazijski programi",
|
||||
"ZG" : "Zasebne gimnazije",
|
||||
"NPI" : "Nižje poklicno izobraževanje",
|
||||
"SPI" : "Srednje poklicno izobraževanje",
|
||||
"SSI" : "Srednje strokovno izobraževanje",
|
||||
"PTI" : "Poklicno-tehnično izobraževanje"
|
||||
}%}
|
||||
{% set map_subject = {
|
||||
"SLO" : "Slovenščina",
|
||||
|
|
Loading…
Reference in New Issue
Block a user