Prototype implementation
This commit is contained in:
parent
315143a6fc
commit
14b0bc6d01
160 changed files with 5731 additions and 42 deletions
29
vergabe_teilnahme/templates/base.html
Normal file
29
vergabe_teilnahme/templates/base.html
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{% load static %}
|
||||
<!DOCTYPE html>
|
||||
<html lang="de" x-data="{ sidebarOpen: true }">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{% block title %}Vergabe Teilnahme{% endblock %}</title>
|
||||
<link rel="stylesheet" href="{% static 'dist/main.css' %}">
|
||||
<script src="{% static 'vendor/alpinejs/alpine.min.js' %}" defer></script>
|
||||
</head>
|
||||
<body class="bg-slate-50 min-h-screen">
|
||||
{% include "partials/topbar.html" %}
|
||||
|
||||
<div class="flex h-[calc(100vh-56px)]">
|
||||
{% include "partials/sidebar.html" %}
|
||||
|
||||
<main class="flex-1 overflow-y-auto p-6">
|
||||
{% include "partials/breadcrumb.html" %}
|
||||
{% block content %}{% endblock %}
|
||||
</main>
|
||||
</div>
|
||||
|
||||
{% include "partials/feedback_button.html" %}
|
||||
<div id="modal-container"></div>
|
||||
|
||||
<script src="{% static 'vendor/htmx/htmx.min.js' %}"></script>
|
||||
{% block extra_js %}{% endblock %}
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue