Add Impressum and QR code management templates

- Created a new Impressum page with legal information and contact details.
- Developed admin link page for linking QR codes to events with form functionality.
- Implemented QR code dashboard for managing QR code sets, including creation and quick actions.
- Added detailed view for QR code sets, allowing addition of QR codes and management actions.
- Introduced static file serving for favicon and related images.
- Established views for static content pages (about, contact, privacy, terms).
- Implemented translation management scripts for compiling and updating translations.
This commit is contained in:
Christian Krakau-Louis
2025-04-14 03:19:41 +02:00
parent 9eef726d9b
commit d595b468e9
43 changed files with 2895 additions and 391 deletions
+24 -12
View File
@@ -1,27 +1,39 @@
{% extends "base.html" %}
{% block content %}
<div class="container mx-auto p-4">
<h1 class="text-2xl font-bold text-irish-green mb-4">Terms of Service</h1>
<h1 class="text-2xl font-bold text-irish-green mb-4">Nutzungsbedingungen</h1>
<p class="mb-4">
Welcome to LeagueLedger! By using our platform, you agree to comply with the following terms and conditions.
Willkommen bei LeagueLedger! Mit der Nutzung unserer Plattform erklären Sie sich mit den folgenden Bedingungen einverstanden.
</p>
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Acceptable Use</h2>
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Nutzungsregeln</h2>
<ul class="list-disc ml-6 mb-4">
<li>No cheating or unfair practices</li>
<li>Respectful communication with other users</li>
<li>Compliance with all applicable laws and regulations</li>
<li>Kein Betrug oder unfaire Praktiken</li>
<li>Respektvolle Kommunikation mit anderen Nutzern</li>
<li>Einhaltung aller anwendbaren Gesetze und Vorschriften</li>
</ul>
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Liability Disclaimer</h2>
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Haftungsausschluss</h2>
<p class="mb-4">
LeagueLedger is provided "as is" without any warranties. We are not liable for any damages arising from your use of the platform.
LeagueLedger wird "wie besehen" ohne jegliche Garantie bereitgestellt. Wir haften nicht für Schäden, die aus Ihrer Nutzung der Plattform entstehen.
</p>
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Governing Law</h2>
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Geltendes Recht</h2>
<p class="mb-4">
These terms shall be governed by and construed in accordance with the laws of Germany.
Diese Bedingungen unterliegen dem deutschen Recht und werden in Übereinstimmung mit diesem ausgelegt.
</p>
<p class="mb-4">
This project is part of the KaufDeinQuiz platform and is operated as an Open-Source initiative. All rights reserved.
Dieses Projekt ist Teil der KaufDeinQuiz-Plattform und wird als Open-Source-Initiative betrieben. Lizenziert unter der Apache License 2.0.
</p>
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Widerrufsbelehrung</h2>
<p class="mb-4">
Sie haben das Recht, binnen vierzehn Tagen ohne Angabe von Gründen diesen Vertrag zu widerrufen. Die Widerrufsfrist beträgt vierzehn Tage ab dem Tag des Vertragsabschlusses.
</p>
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Änderungen der Nutzungsbedingungen</h2>
<p class="mb-4">
Wir behalten uns das Recht vor, diese Nutzungsbedingungen jederzeit zu ändern. Die aktuelle Version ist stets auf dieser Seite verfügbar.
</p>
<p>Christian Louis IT Beratung und Medienproduktion ist verantwortlich für den Betrieb dieser Plattform.</p>
<p class="mt-8 text-sm text-gray-600">
Letzte Aktualisierung: April 2025
</p>
<p>Christian Louis IT Beratung und Medienproduktion is responsible for the operation of this platform.</p>
</div>
{% endblock %}