I have an existing website that is a Django App.
I have installed Wagtail, and the Wagtail CMS is now accessible at www.example.com/cms
. Wagtail is working correctly with my database, and all the existing users are visible when I go to settings
and then users
, in the wagtail CMS admin page.
I want to use Wagtail to add blog functionality to my website.
Requirements
- I want any user to be able to create a new blog and add posts to their blog.
- I want the blog created by a user to be visible at
www.example.com/blogs/username/
How can I set Wagtail up to accomplish this?
I have checked the documentation at http://docs.wagtail.io/en/v1.9/ but could not figure out where to start with my modifications. I have also installed the example blog project (https://github.com/wagtail/wagtaildemo) but I was also unable to figure out how to accomplish 1 and 2 above from this.
Any complete answers, or general pointers, very welcome.