Hi Lee, it's definitely possible. Here's how it's done in the blog: https://github.com/stephenmcd/mezzanine/blob/master/mezzanine/blog/views.py#L54 Also, take a look at the template to see how it's used there: https://github.com/stephenmcd/mezzanine/blob/master/mezzanine/blog/templates/blog/blog_post_list.html
Good luck! On Fri, Jun 26, 2015 at 12:05 PM, Lee H. <[email protected]> wrote: > On one of my pages I have a model called MapPlace (it's basically just a > place name and some geo coords), I add it to the admin as an inline > of the page like > > from mezzanine.core.admin import TabularDynamicInlineAdmin, > class MapPlaceInline(TabularDynamicInlineAdmin): > model = MapPlace > > Things look like > http://www.awesomescreenshot.com/image/360673/6d18b2c7d906fead91ebe9696becb8f3 > > All well and good, but now I have over 30 MapPlaces added, and this list > is becoming unwieldy, so I need to paginate these rows. > Is this possible in Mezzanine? > > > > -- > You received this message because you are subscribed to the Google Groups > "Mezzanine Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
