jazzmin as a more beauty admin panel
0
app/static/css/.gitkeep
Normal file
11
app/static/css/bootstrap.min.css
vendored
Normal file
48
app/static/css/style.css
Normal file
|
@ -0,0 +1,48 @@
|
|||
h1 {
|
||||
margin-bottom: 2rem;
|
||||
color: #0068b4;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.logowvh {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
max-height: 15rem;
|
||||
aspect-ratio: 1/1;
|
||||
margin-top: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
#loginMain{
|
||||
color: #0068b4;
|
||||
font-weight: bold;
|
||||
font-size: 1.5rem;
|
||||
text-decoration: none;
|
||||
}
|
||||
.rounded-pill {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
#wfvmainsquare{
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
background-color: #0068b4;
|
||||
rotate: 70deg;
|
||||
margin: 3%;
|
||||
border: 3px solid #b1b2b3;
|
||||
}
|
||||
|
||||
.wfvwhitesquare{
|
||||
width: 20%;
|
||||
height: 50%;
|
||||
background-color: white;
|
||||
position: absolute;
|
||||
margin-left: 15%;
|
||||
}
|
||||
|
||||
|
0
app/static/img/.gitkeep
Normal file
BIN
app/static/img/WildvogelhilfeJena_Logo_1200x1200_V0.eps
Normal file
BIN
app/static/img/favicon.ico
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
app/static/img/favicon_small.ico
Normal file
After Width: | Height: | Size: 697 B |
BIN
app/static/img/logo.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
app/static/img/logo_medium.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
app/static/img/signal-2023-06-09-222100_004.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
app/static/img/signal-2023-06-09-222307_004.png
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
app/static/img/wvh.png
Normal file
After Width: | Height: | Size: 78 KiB |
2578
app/static/img/wvhLogo.svg
Normal file
After Width: | Height: | Size: 176 KiB |
BIN
app/static/img/wvhLogo12001200300x.png
Normal file
After Width: | Height: | Size: 310 KiB |
21
app/static/js/bird.js
Normal file
|
@ -0,0 +1,21 @@
|
|||
|
||||
function showHideAviary() {
|
||||
let statusField = document.getElementById("id_status");
|
||||
let aviaryField = document.getElementById("div_id_aviary");
|
||||
let statusText = statusField.options[statusField.selectedIndex].text;
|
||||
|
||||
if (statusText == 'In Auswilderung') {
|
||||
aviaryField.hidden = false
|
||||
} else {
|
||||
aviaryField.hidden = true
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Load function on windows load.
|
||||
(showHideAviary)();
|
||||
|
||||
// Load function on change.
|
||||
document.getElementById("id_status").addEventListener("change", (event) => {
|
||||
showHideAviary()
|
||||
});
|
7
app/static/js/bootstrap.bundle.min.js
vendored
Normal file
17
app/static/js/find_circumstances.js
Normal file
|
@ -0,0 +1,17 @@
|
|||
function showHideFindCircumstancesNew() {
|
||||
let circField = document.getElementById("id_find_circumstances");
|
||||
let circFieldNew = document.getElementById("id_find_circumstances_new");
|
||||
let circText = circField.options[circField.selectedIndex].text;
|
||||
|
||||
if (circText == 'Neu') {
|
||||
circFieldNew.type = "show"
|
||||
} else {
|
||||
circFieldNew.type = "hidden"
|
||||
}
|
||||
}
|
||||
|
||||
(showHideFindCircumstancesNew)();
|
||||
|
||||
document.getElementById("id_find_circumstances").addEventListener("change", (event) => {
|
||||
showHideFindCircumstancesNew()
|
||||
});
|