vergabe-teilnahme/vergabe_teilnahme/templates/base.html
tegwick 35df9bb772
All checks were successful
Application acceptance / application-tests (push) Successful in 1m26s
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 1s
Build and Publish Container Image / build-and-push (push) Successful in 34s
Complete dashboard loose ends and reconcile blocked pilot work
Assistant: codex
Assistant-Model: gpt-6-astra
Assistant-Session: 01a0e394-2a69-7df0-8980-22a0ebe55216
2026-09-27 18:34:48 +02:00

29 lines
979 B
HTML

{% 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-paper-2 min-h-screen text-ink" hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'>
{% 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>