vote up 0 vote down star
1

I'm working on a new Django project, and the client wants to "feature" content on the homepage and a few other sections of the website. Content in this case could be a blog post, an event, a news story, etc. Each item would have a "start featuring" datetime and an "stop featuring" datetime.

I've done this a few different ways in the past, but wonder if anybody has any great methods of archiving this.

flag

1 Answer

vote up 6 vote down check

Have you looked at the contenttypes framework? You could set up a FeaturedItem model, with start and end datetimes, and a generic foreign key. This allows the relationship to be with any model.

If you heavily feature objects from particular models, look at the section on reverse generic relations.

link|flag
That's actually one of the methods I've used in the past. The one usability problem we've ran into is the visibility of what's currently featured, but I'll probably just create a "read-only" view of all active the FeaturedItems. Thanks! – btol45 Oct 27 at 17:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.