Skip to content

Commit

Permalink
Add dropdown filter to show rooms, session types (#179)
Browse files Browse the repository at this point in the history
Co-authored-by: lcduong <[email protected]>
  • Loading branch information
lcduong and odkhang authored Aug 8, 2024
1 parent e937b99 commit 89860e1
Show file tree
Hide file tree
Showing 4 changed files with 510 additions and 128 deletions.
3 changes: 2 additions & 1 deletion src/pretalx/schedule/models/schedule.py
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,8 @@ def build_data(self, all_talks=False, filter_updated=None, all_rooms=False):
"state": talk.submission.state if all_talks else None,
"fav_count": count_fav_talk(talk.submission.code) if talk.submission else 0,
"do_not_record": talk.submission.do_not_record,
"tags": talk.submission.get_tag()
"tags": talk.submission.get_tag(),
"session_type": talk.submission.submission_type.name,
}
)
else:
Expand Down
Loading

0 comments on commit 89860e1

Please sign in to comment.