>     url("^$", "mezzanine.pages.views.page", {"slug": "/"}, name="Hack"),
>

That should read:
    url("^$", "mezzanine.pages.views.page", {"slug": "/"}, name="home"),

There is no view named "Hack" in your code, just a Page. This page
<https://docs.djangoproject.com/en/dev/topics/http/urls/#reverse-resolution-of-urls>
from the Django documentation might help.

The patterns in the base urls.py only need to be uncommented to work,
assuming you follow the instructions in the comments.

hth,
ken

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

Reply via email to