This is my first run at mezzanine and I'm having a good time working with it. I've been around Django for a bit so it was an easy sell when hunting for a cms.
I am looking to implement Page specific behavior, so I believe Page Processors are the solution, which I found @ http://mezzanine.jupo.org/docs/content-architecture.html#page-processors However, I run into trouble when creating my new Page model "Rsvp". (I'm getting married so this is going to be the wedding site). When I meander over to the "admin/pages/page/" area of the site, it throws a "ProgrammingError: Table 'wedding.wedding_rsvp' doesn't exist" Is there a manage.py command that I was supposed to run after defining this new Page model? models.py =================================== from django.contrib import admin from django.db import models from mezzanine.pages.models import Page from mezzanine.pages.admin import PageAdmin class Rsvp(Page): first_name = models.CharField(max_length=255) admin.site.register(Rsvp, PageAdmin) -- 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/groups/opt_out.
