django-scheduler
django-scheduler copied to clipboard
Can't edit not persisted occurrence
Currently django-scheduler doesn't allow to edit non-persisted occurrences in admin section (not only in admin section - i didn't find any other gui way to achive it). It's clear why - there may be endless list of occurrences.
What if this option will be realized in occurrence admin section with the help of calendars? Suppose templates/admin/schedule/occurrence/change_list.html will contain extra div id="calendar"
Every item on calendar is clickable and refers you to occurrence edit page.
If occurrence has id, calendar opens default edit occurrence page. In other case it may open 'add' page with some initial data (based on 'virtual' instance - date, event_id) and later object saves as real occurrence if some initial data is modified.
Any thoughts about this? May be i didn't find already existing options?
There were dialogs defined in _dialogs.html which would trigger edit of single non persistent occurrences and it used to work. But now I'm facing issue with opening that dialog as get_occurrence method is not working as expected and it's reported in #289 It used to work in older version of 0.7.5 but after I upgraded I'm facing these issues.