User Profile sind nun verfügbar

This commit is contained in:
kai
2026-08-25 14:39:47 +02:00
parent 714194615f
commit 72ff659ac4
6 changed files with 291 additions and 4 deletions
+4 -4
View File
@@ -255,7 +255,7 @@
{% if attending_users %}
<ul>
{% for attendee in attending_users %}
<li>{{ attendee.name }}</li>
<li><a href="/users/{{ attendee.username }}">{{ attendee.name }}</a></li>
{% endfor %}
</ul>
{% else %}
@@ -269,7 +269,7 @@
{% if maybe_users %}
<ul>
{% for maybe_user in maybe_users %}
<li>{{ maybe_user.name }}</li>
<li><a href="/users/{{ maybe_user.username }}">{{ maybe_user.name }}</a></li>
{% endfor %}
</ul>
{% else %}
@@ -283,7 +283,7 @@
{% if ticket_seekers %}
<ul>
{% for seeker in ticket_seekers %}
<li>{{ seeker.name }}</li>
<li><a href="/users/{{ seeker.username }}">{{ seeker.name }}</a></li>
{% endfor %}
</ul>
{% else %}
@@ -323,7 +323,7 @@
{% for comment in comments %}
<article class="comment">
<div class="comment-meta">
<strong>{{ comment.author }}</strong>
<strong><a href="/users/{{ comment.username }}">{{ comment.author }}</a></strong>
<span>{{ comment.created_at }}</span>
</div>
<p>{{ comment.body }}</p>