Django blogs provides a WYSIWYG blogging application with medium style editor using Medium-Editor.
Install with pip using
pip install -U djangoblogs
- Add
'blogs'to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...
'blogs',
]- Include the
djangoblogsURLconf in your project urls.py:
path('blogs/', include('blogs.urls')),- Run
./mangage.py migrateto create thedjango-blogsmodels.