RE: [mezzanine-users] Re: Extending Displayable Model, Views

2017-07-09 Thread Eduardo Rivas
Glad it’s all sorted 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 mezzanine-users+unsubscr...@googlegroups.com. For more options, visit

Re: [mezzanine-users] Re: Extending Displayable Model, Views

2017-07-09 Thread marcusguttenplan
Just solved this 404 issue, such a stupid mistake! Was using (now deprecated) `urlpatterns = patterns()`, just switch out patterns for a simple `urlpatterns = []` and all works as expected. Have also successfully reversed the blog's views enough to return data! Thanks for the help Eduardo,

Re: [mezzanine-users] Re: Extending Displayable Model, Views

2017-07-09 Thread marcusguttenplan
Currently they are before the catch-all url("^", include("mezzanine.urls")), but after the redirect to index url("^$", direct_to_template, {"template": "index.html"}, name="home"), In the same pattern urlpatterns += [] Trying to get debug statements into both the app's urlconf and views, but