I am building a website for an annual event. Part of the site will allow the administrators to post news articles that cover the event. I envision my URLs looking something like:
example.com/2007/articles/ example.com/2007/articles/article-1-slug-here/ example.com/2008/articles/ example.com/2008/articles/a-2008-article-slug/ I've got urls.py working fine. Problem is I want to implement a unique_for on the slug field, so that all articles don't have to have a unique slug, only those that for a certain event. Now, for this site I could probably get away with using unique_for_year on the pub_date....but that's not actually correct because the articles are unique for the event, which is a ForeignKey on my articles model. I could see this being used in other ways too, for example unique_for_site if you wanted to allow the same slug to be used on two sites if you're using contrib.sites. Or if my URLs were something like /author-name/article-slug, then I'd want slugs to be unique_for the author field. Any thoughts on how to implement something like this? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---