mezzanine - Is there a way to have custom content with mezzanie/Django -
i'm new using mezzanine , figured out how set-up pages can manage content admin page. have static pages, want store content , being able control content admin page.
is can mezzanine?
i imagine need create model richtext field add model admin interface , somehow access model through templatage.
but exact example appreciated.
thanks!
see docs on creating custom content types. primary approach subclass page
model , add custom fields.
alternatively, if custom content conceptually independent pages, might make sense create independent models relational fields richtextpage
model , edit them through inlines.
note mezzanine docs on custom content types , django docs on inlines use same author/book example can compare 2 strategies.
Comments
Post a Comment