It's not yet ready for a PR yet. I still need to add support for exceptions.
Steve Pomeroy
@xxv
oh, I was having an issue that I haven't been able to trace yet: for the various day views, it seems as though it doesn't start at the beginning of the day: http://xxv.so/0xd635330f any idea where I might start going to fix that?
It looks like a timezone issue, so I'm a little worried :-)
I know the docs clearly state this app works on django 1.7, but is there any patch to get it backwards compatible with 1.6?
Leonardo Lazzaro
@llazzaro
@DanielStevenLewis do not use develop branch. try python3 with master
@enmanuelr you can try an older versions. I think support for django 1.7 was added on 0.7.4 . you should try version 0.7.3 (pip install django-scheduler==0.7.3)
Portia Burton
@pkafei
I am running the sample schedule sampler on my local server. I can see the calendar, but not sure how user can add an appointment to the calendar
Portia Burton
@pkafei
Oh, never mind I see that you can add dates in admin
NylonPython
@NylonPython
Hi everyone, does this app support Django 1.8 or just 1.7?
N
@nwaxiomatic
1.8, but there was a recent change in 1.8 that made the app "slower"
due to prefetching
Leonardo Lazzaro
@llazzaro
@pkafei you can add events form the normal views also. but you need to configure the permissions. after some fix the default permission is to deny everything.
I started to push new bootstrap templates to the repository. let me know if someone had problems
_
N
@nwaxiomatic
@llazzaro what do you have going with the bootstrap templates?
Leonardo Lazzaro
@llazzaro
I migrated the templates to use bootstrap. and also removed jQuery-ui
modals are now bootstrap also
N
@nwaxiomatic
Is this also fullcalendar support? And models for editing?
Modals *
Leonardo Lazzaro
@llazzaro
old html files in the template directory. no full calendar support
N
@nwaxiomatic
I got the fullcalendar all but totally functional
just need the modals for event vs occurrence
N
@nwaxiomatic
just did pull request, all basic functionality working. travis is failing, though (and I never know why)
Alexandre Boukhlif
@blokfyuh
Hi llazzaro, are you around ?
Leonardo Lazzaro
@llazzaro
yes
Alexandre Boukhlif
@blokfyuh
Is your django-schedule compatible with django 1.8 ?
Also, I checked out your code and correct me if I'm wrong but you only persist occurences if they are moved or cancelled, right ? Why do you repeat title and description field for occurences ? Aren't they only event instances ? So shouldn't they inherit title and description from their event ?
Kirill Romanovskiy
@romanovskiy-k
Hi @llazzaro, thanks for the app! Which branch should I use now? pip version seems to be a bit outdated compared to master in github
Leonardo Lazzaro
@llazzaro
schedule is not yet compatible with 1.8
you can try master branch but is not yet finished
the difference is the refactor on templates to support bootstrap
I don't have too much time to maintain the project now
Juho Rutila
@jrutila
Is the 1.8 compatibility just for the UI? I have been using schedule for my project with Django 1.8.5 but I am not using the UI. Haven't noticed any issues.
Leonardo Lazzaro
@llazzaro
Hello everyone. In two months I will release a new version of scheduler which is not backward compatible with django 1.6. how many of you didn't migrate to latest versions of django?
Hi @llazzaro , this seems like a very neat app, so thanks a lot for it! I've installed and can run the sample program, but I can't seem to find out how to add my own elements to it, nor can I alter the view to weeks or days. I apologize for my technical ineptitude... Could you please help me? Thanks!
Eirik Slinning Korsnes
@ampled
hi, could anyone shed some light on using the CalendarRelation / EventRelation model and why it might not scale well?
Also, i'm unsure what the SCHEDULER_BASE_CLASSES should look like if I want to map different base classes to different models in the app. Like seperate base classes for Event and Occurrence