usermanagement/translation/calendar

This commit is contained in:
jschaufuss@leitwerk.de
2025-08-11 12:27:30 +02:00
parent 13a5286357
commit c2bb64d961
27 changed files with 998 additions and 240 deletions

View File

@@ -1,6 +1,6 @@
{% load static %}
<!DOCTYPE html>
<html lang="de">
<html lang="en">
<head>
<meta charset="UTF-8">
@@ -14,15 +14,18 @@
<nav class="main-nav">
<div class="nav-content">
<a href="/" class="nav-brand">Subscribarr</a>
<div class="nav-links">
<button class="nav-toggle" aria-label="Open menu" aria-expanded="false" aria-controls="nav-menu">
<span></span><span></span><span></span>
</button>
<div id="nav-menu" class="nav-links">
{% if user.is_authenticated %}
<span class="user-info">Angemeldet als <strong>{{ user.username }}</strong></span>
<span class="user-info">Signed in as <strong>{{ user.username }}</strong></span>
<a href="{% url 'accounts:profile' %}" class="nav-profile">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path>
<circle cx="12" cy="7" r="4"></circle>
</svg>
Profil
Profile
</a>
{% if user.is_jellyfin_admin %}
<a href="{% url 'settingspanel:index' %}" class="nav-admin">
@@ -34,14 +37,14 @@
{% endif %}
<form method="post" action="{% url 'accounts:logout' %}" class="inline-form">
{% csrf_token %}
<button type="submit" class="nav-logout">
<button type="submit" class="nav-logout btn-link">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2">
<path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path>
<polyline points="16 17 21 12 16 7"></polyline>
<line x1="21" y1="12" x2="9" y2="12"></line>
</svg>
Abmelden
Sign out
</button>
</form>
{% else %}
@@ -51,7 +54,7 @@
<polyline points="10 17 15 12 10 7"></polyline>
<line x1="15" y1="12" x2="3" y2="12"></line>
</svg>
Anmelden
Sign in
</a>
<a href="{% url 'accounts:register' %}" class="nav-register">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
@@ -60,13 +63,25 @@
<line x1="20" y1="8" x2="20" y2="14"></line>
<line x1="23" y1="11" x2="17" y2="11"></line>
</svg>
Registrieren
Register
</a>
{% endif %}
</div>
</div>
</nav>
<script>
(function(){
const btn = document.querySelector('.nav-toggle');
const menu = document.getElementById('nav-menu');
if(!btn || !menu) return;
btn.addEventListener('click', ()=>{
const open = menu.classList.toggle('open');
btn.setAttribute('aria-expanded', open ? 'true' : 'false');
});
})();
</script>
{% block content %}{% endblock %}
</body>