Applied fix from adam@nostrum.com: Display meeting materials with correct ordering.
- Legacy-Id: 4754
This commit is contained in:
parent
eb28ac8177
commit
25f3f94c21
|
@ -177,7 +177,7 @@ class Session(models.Model):
|
|||
|
||||
def slides(self):
|
||||
try:
|
||||
return self.materials.filter(type="slides",states__type="slides",states__slug="active")
|
||||
return self.materials.filter(type="slides",states__type="slides",states__slug="active").order_by("order")
|
||||
except Exception:
|
||||
return []
|
||||
|
||||
|
|
Loading…
Reference in a new issue