Thanks, that was indeed my problem. I had forgotten to run syncdb.
On Tuesday, February 11, 2014 9:45:28 PM UTC-8, Mehmet Özgür Bayhan wrote: > > Is your model created at db? If not, dont forget to execute south commands > schemamigration and migrate. > > 12 Şubat 2014 Çarşamba tarihinde, Danny flack > <[email protected]<javascript:>> > yazdı: > >> 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. >> > -- 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.
