The provided text appears to be a log of changes made in a software project, likely using version control systems like Git. Here's a breakdown:

This commit is contained in:
2025-06-12 15:10:31 +02:00
parent b1dd629d47
commit 64691be749
184 changed files with 958 additions and 7 deletions

View File

@ -125,12 +125,12 @@
{{ current_user.display_name or current_user.username }}
</div>
<a href="{{ url_for('users.profile') }}" class="dropdown-item">
<a href="{{ url_for('users.user_profile') }}" class="dropdown-item">
<i class="fas fa-user-circle" aria-hidden="true"></i>
Mein Profil
</a>
<a href="{{ url_for('users.settings') }}" class="dropdown-item">
<a href="{{ url_for('users.user_settings') }}" class="dropdown-item">
<i class="fas fa-cog" aria-hidden="true"></i>
Einstellungen
</a>
@ -219,13 +219,13 @@
{% if current_user.is_authenticated %}
<div class="dropdown-divider"></div>
<a href="{{ url_for('users.profile') }}"
<a href="{{ url_for('users.user_profile') }}"
class="mobile-nav-item">
<i class="fas fa-user-circle" aria-hidden="true"></i>
<span>Mein Profil</span>
</a>
<a href="{{ url_for('users.settings') }}"
<a href="{{ url_for('users.user_settings') }}"
class="mobile-nav-item">
<i class="fas fa-cog" aria-hidden="true"></i>
<span>Einstellungen</span>