Hi all,

Any tips for setting up a multi-page article (ie one news story spread
over several pages, box with a content list of the news story, links,
etc.)?

With my current knowledge I would do this:

class NewsStory(models.Model):
 headline = ...
 image = ...

class NewsStoryPage(models.Model):
  story = models.Foreignkey(NewsStory, edit_inline=True)
  page_number = models.IntegerField()
  content = ....

The ordering with the integer number would probably be an inconvience
for the editor...

But is this the way to go?

Cheers,
  >>Michael


--~--~---------~--~----~------------~-------~--~----~
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