This project integrates the Wagtail CMS with Django Oscar for eCommerce. It adds the following features:
each Oscar category page can now be managed by the Wagtail CMS
it is possible to add product lists to wagtail pages
Installation
Presuming you have installed Django-Oscar and Wagtail into your Django project.
First install django-oscar-wagtail via PIP:
pip install django-oscar-wagtail
And add oscar_wagtail to your settings as follows:
INSTALLED_APPS = [
# ... your other apps
'oscar_wagtail',
]
Add the URLs to urls.py:
import oscar_wagtail.urls
urlpatterns += [
url(r'^api/oscar_wagtail/', include(oscar_wagtail.urls, namespace='oscar_wagtail')),
]
Fork the catalogue app as described in the oscar documentation. Then instead of using the AbstractCategory from Oscar use the one from this project as follows:
from oscar_wagtail.abstract_models import AbstractCategory
class Category(AbstractCategory):
pass
from oscar.apps.catalogue.models import *
If you want to have a CMS button in the Oscar dashboard, add the following to your settings:
OSCAR_DASHBOARD_NAVIGATION.insert(1, {
'label': 'CMS',
'icon': 'icon-th-list',
'url_name': 'wagtailadmin_home',
'access_fn': lambda user, *args: user.has_perm('wagtailadmin.access_admin')
})
Release files for django-oscar-wagtail 0.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django-oscar-wagtail-0.2.0.tar.gz | 10.3 kB | Details |
Release files / django-oscar-wagtail-0.2.0.tar.gz
| Download URL | django-oscar-wagtail-0.2.0.tar.gz |
|---|---|
| Size | 10.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
cadcbfa5cc1bbd0aeccd15ef6409f11fd363d10f56b1fdc7d0827da3e2a56be5
|
|
BLAKE2b-256 checksum How to use checksums |
5fdd38685aa2f47c425647bf75e449af2eb70bfc00fa0506a6bacd1d5c72ed35
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |