On May 28, 2:29 am, Michael Keselman <mkdzm...@gmail.com> wrote:
> Hello,
>
> I have somewhat of a strange situation:
>
> Each user has his own calendar and own set of events, and I want the  
> event categories to be models like Assignment, FieldTrip, Test/Quiz,  
> etc. I want it like this so that I can make the event on the rendered  
> calendar a link to the assignment page or field trip page or test/quiz  
> page, etc. Should I make an abstract model called EventCategory, for  
> example, and make the Assignment, FieldTrip, and Test/Quiz models  
> subclass EventCategory, or use the contenttypes framework for the  
> category in the Event model and then just limit the choices in the  
> form(s) to the models I want to use?
>
> Thanks!
> Michael

just my 2 cents, but I would go with the contenttype framework

I would make an event model to stare basic calendar data, like date,
time, owner, and a link to anything else (test/quiz, fieldtrip, etc)

this way if you later decide to add a new even type, let's say party,
you won't have to code anything but the party model.

Then you can make all the queries to the general event model, and
reach the related objects from there.

As a basis you might like django-event-calendar[1] as well, but
remember that it's more basic than you. (Though might be nice to
"upgrade" according to your plans. :))

[1]: http://code.google.com/p/django-event-calendar

V
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to