Skip to content

Commit

Permalink
added link to user in campaign detail view
Browse files Browse the repository at this point in the history
  • Loading branch information
Nik Sauer committed Jan 23, 2025
1 parent 8b5597a commit 628bce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/templates/campaigns/detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ <h3 class="mb-0">{% trans "Participants" %}</h3>
<tbody>
{% for user in campaign.users.all %}
<tr>
<td><a href="">{{ user.username }}</a></td>
<td><a href="{% url 'participants-detail' campaign.pk user.pk %}">{{ user.username }}</a></td>
<td>{{ user.email }}</td>
<td>
<div class="text-end d-flex flex-column flex-md-row gap-2 justify-content-end">
Expand Down

0 comments on commit 628bce8

Please sign in to comment.