Skip to content

Commit 25f3f94

Browse files
committed
Applied fix from adam@nostrum.com: Display meeting materials with correct ordering.
- Legacy-Id: 4754
1 parent eb28ac8 commit 25f3f94

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/meeting/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def minutes(self):
177177

178178
def slides(self):
179179
try:
180-
return self.materials.filter(type="slides",states__type="slides",states__slug="active")
180+
return self.materials.filter(type="slides",states__type="slides",states__slug="active").order_by("order")
181181
except Exception:
182182
return []
183183

0 commit comments

Comments
 (0)