You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
4.4 KiB
81 lines
4.4 KiB
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<!-- all infos about iphone app -->
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="white">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-title" content="MeetingOrganizer">
|
|
<link rel="apple-touch-icon" href="{% static 'img/iphone.png' %}">
|
|
<link rel="apple-touch-icon" sizes="152x152" href="{% static 'img/ipad_152.png' %}">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'img/ipad_180.png' %}">
|
|
<link rel="apple-touch-icon" sizes="167x167" href="{% static 'img/ipad_167.png' %}">
|
|
|
|
<!-- all others -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="{% static 'css/bootstrap.css' %}">
|
|
<link rel="stylesheet" href="{% static 'css/styles.css' %}">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
|
|
<title>Meeting Organizer</title>
|
|
</head>
|
|
<body>
|
|
|
|
{% block pushup %}
|
|
{% endblock %}
|
|
|
|
<div id="loading" class="load_body d-none" style="width: 100%; height: 110vh; position: absolute; background-color: white; z-index: 100; margin-top: -2rem;">
|
|
<!-- <img src="{% static 'img/1484.gif' %}" class="gif" alt="load"> -->
|
|
<div class="gif">
|
|
<h2 style="color: black;">Daten Speichern und Senden...</h2>
|
|
</div>
|
|
</div>
|
|
<div id="loading_new" class="load_body d-none" style="width: 100%; height: 110vh; position: absolute; background-color: white; z-index: 100; margin-top: -2rem;">
|
|
<!-- <img src="{% static 'img/1484.gif' %}" class="gif" alt="load"> -->
|
|
<div class="gif">
|
|
<h2 style="color: black;">Daten abrufen...</h2>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
</script>
|
|
|
|
<div class="container" style="max-width: 100%;">
|
|
<div class="top_line row justify-content-between">
|
|
<div class="title col-6 text-start dropdown">
|
|
<h4><c style="color: rgb(221, 196, 107); vertical-align: top;" id="dropdownMenuLink" data-bs-toggle="dropdown">Meeting</c><b>Organizer</b></h4>
|
|
<!-- <span class="curser" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
|
|
<h4><c style="color: rgb(221, 196, 107); vertical-align: top;" id="dropdownMenuLink" data-bs-toggle="dropdown">Meeting</c><b>Organizer</b></h4>
|
|
</span> -->
|
|
|
|
<!-- <ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
|
|
<li><a class="dropdown-item {% if menu == 1 %}active{% endif %}" href="/main/">Dashboard</a></li>
|
|
<li><a class="dropdown-item {% if menu == 2 %}active{% endif %}" href="/main/bestand/">Bestände</a></li>
|
|
<li><a class="dropdown-item {% if menu == 3 %}active{% endif %}" href="/main/inventur/">Inventur</a></li>
|
|
<li><a class="dropdown-item {% if menu == 4 %}active{% endif %}" href="/main/bestellung/">Bestellung</a></li>
|
|
<li><a class="dropdown-item {% if menu == 5 %}active{% endif %}" href="/main/nachschub/">Nachschub</a></li>
|
|
<li><a class="dropdown-item {% if menu == 6 %}active{% endif %}" href="/main/ausgabe/">Ausgabe</a></li>
|
|
<li><a class="dropdown-item {% if menu == 7 %}active{% endif %}" href="/main/bewegung/">Bewegung</a></li>
|
|
<li><a class="dropdown-item {% if menu == 8 %}active{% endif %}" href="/main/jw-hub/"><i>jw-hub</i> Liste</a></li>
|
|
</ul> -->
|
|
</div>
|
|
<div class="col-3 text-end dropdown">
|
|
<span class="curser" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
|
|
<img class="pb" src="{% static 'img/user.png' %}" alt="User">
|
|
</span>
|
|
<ul class="dropdown-menu" aria-labelledby="dropdownMenuLink">
|
|
<li><a class="dropdown-item" href="/admin">Admin-Seite</a></li>
|
|
<li><a class="dropdown-item" href="/logout">Logout</a></li>
|
|
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
</div>
|
|
<script src="{% static 'js/bootstrap.bundle.min.js' %}"></script>
|
|
</body>
|
|
</html> |