don't show cancelled presentations on schedule list
This commit is contained in:
parent
453a443b5f
commit
4b6684b611
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ def schedule_detail(request, slug=None):
|
|||
|
||||
|
||||
def schedule_list(request):
|
||||
presentations = Presentation.objects.order_by("id")
|
||||
presentations = Presentation.objects.exclude(cancelled=True).order_by("id")
|
||||
ctx = {
|
||||
"presentations": presentations,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue