User Profile sind nun verfügbar
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user