While early days thru django/mezzanine docs, been trying to hack up a very basic home page based on Ross Laird's phenomenal blog tut. Was hoping for a nudge/tips from those more experienced?
1) Within a python virtualenv, accessed the admin page and added a couple of additional pages to see what functionality was immediately available; namely form, rich text, gallery and link page. In other words, the defaults.
2) Separately, in order to incorporate bootstrap, created an app 'trialsite', and copied into the template directory, base.html, index.html, startertemplate.html, footer_scripts.html (these four from bootstrap) and another trialpage.html to work on as a secondary page.
3) Using urls.py, replaced the former index.html with startertemplate.html. plan on using this as start page.
I don't think I want to use the pages made in step 1) but how do I access to edit them? Doing a locate doesn't cause them to surface.
Should all modified pages from bootstrap examples be added into urls.py and then they'll show on the site and in admin? Have tried adding trialpage.html a few times but not getting the regex desc. correct.
TIA, V.