symposion_app/vendor/symposion/schedule
James Polley b833b7d869 Order slots by room order first
* lca2018 has a situation where we have multiple slots starting at the
  same time, but ending at different times
* The headers of the timetable grid are sorted by room sort order
* In sqlite at least, ordering by start,order seems to implicitly
  resolve duplicate start times by looking at the other sort fields
  first, and will only sort on order if all other fields are identical

* This results in the slot that ends first going in column 1, which
  gets out of sync with the room listed in the header

* I can't figure out how to solve this in the database, so...

* Force the slots to be sorted by room order.
* Then, for each start_time, select out slots starting at that time
  and operate on them
* This both gets the slots in the right order *and* keeps multi-room
  slots with the right colspan. Yay!

* It's possible that this wouldn't be needed on some DBs which might
do the sorting differently.
2017-12-24 19:20:04 +11:00
..
migrations Taking one out of PyCon's (US) book 2017-05-27 20:11:39 +10:00
tests Taking one out of PyCon's (US) book 2017-05-27 20:11:39 +10:00
__init__.py Taking one out of PyCon's (US) book 2017-05-27 20:11:39 +10:00
admin.py List rooms in slot admin 2017-12-24 13:54:57 +11:00
apps.py Taking one out of PyCon's (US) book 2017-05-27 20:11:39 +10:00
forms.py Don't duplicate existing rooms when importing schedule CSV 2017-12-03 16:15:19 +11:00
helpers.py Taking one out of PyCon's (US) book 2017-05-27 20:11:39 +10:00
models.py Room needs dunder-str as well as dunder-unicode 2017-10-15 15:33:56 +10:00
timetable.py Order slots by room order first 2017-12-24 19:20:04 +11:00
urls.py Taking one out of PyCon's (US) book 2017-05-27 20:11:39 +10:00
views.py Wrap input CSV in an TextIOWrapper 2017-10-15 14:59:57 +10:00