Skip to content
Snippets Groups Projects
Verified Commit caba56c1 authored by Lukas Schauer's avatar Lukas Schauer :unlock:
Browse files

order jitsi recordings by name

parent d6728979
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ def room(request, room_id):
return render(request, "forbidden.html")
try:
recordings = list(Course.objects.get(owner__username="jitsi-recordings").video_set.filter(description=room.name))
recordings = list(Course.objects.get(owner__username="jitsi-recordings").video_set.filter(description=room.name).order_by("name"))
except:
recordings = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment