I'm currently putting together my first calendar view for a website.
Initially, I thought that creating a basic "Event" model with a single
DateField would be good enough, but after thinking about it, realized
that without some basic "Repeat" functionality, it'll become useless
pretty quickly.

For instance, in iCal, when you create a new event, you can choose for
it to repeat daily, weekly, monthly or yearly. That's easy enough, a
simple IntegerField with a 'choices' option.

However, iCal also has a "Custom" option. This also has "Daily",
"Weekly", "Monthly" and "Yearly" options, except that with each of
them, you get to customize it. So for "Daily", it says "Every X days",
where "X" is a text field for you to put a number in.

For "Weekly", it says "Every X weeks on Y", where X is again a text
field, and Y is an option of one of the seven days.

Can anyone see a reasonable way to do this with the Django admin, or
am I going to have to create a custom form for this?

Thanks,
Jay P.

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to