Skip to content

Commit

Permalink
User details
Browse files Browse the repository at this point in the history
  • Loading branch information
fsoest committed Jan 11, 2025
1 parent 951b7a9 commit ffb3abd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion S1/waitinglists/templates/waitinglists/management.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h6><a href="{% url 'total_waiting_list' module.id %}">{{ module.name }}</a></h6
<div class="col-8">
<h4>Quiz Timeouts</h4>
{% for user in timeout_users %}
<a href="{% url 'user_detail' user.username %}">{{ user.first_name }} {{ user.last_name }}</a>
<a href="{% url 'user_details' user.username %}">{{ user.first_name }} {{ user.last_name }}</a>
{% endfor %}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion S1/waitinglists/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
name="total_waiting_list",
),
path("update_module", views.update_module_2, name="update_module"),
path("<int:user_id>/details", views.user_details, name="user_details"),
path("<int:user_id>/details", views.user_detail, name="user_details"),
]

0 comments on commit ffb3abd

Please sign in to comment.