Integration of django-oscar and django-cms - django

I want to build a django oscar ecommerce web app.
A Required fearure in this app is a content management system, therefore I want to integrate django-cms in my app. After some research I found apphooks but there is no guide on google for integration of django-oscar and django-cms.
Can anyone tell me the way to solve this issue?

Not sure if you still looking for this solution, but i created a content management system by combining Django-CMS and Oscar Commerce with tons of additional features including user messasaging, docker support, graphql, support for several payment providers and more.
https://github.com/bastianhilton/alternate-cms

Depending on what kind of integration you want to do, you should check Wagtail which is another Django CMS, well documented, the community seems to be growing up.
Adding Wagtail to an existing project is explained here and works well with a django-oscar project.

Related

How to implement django cms page versioning?

I am using django-cms 3.5.2
I am unable to find any plugins which support page versioning.
There is plugin on github:
https://github.com/divio/djangocms-versioning
But I am not sure if it is published and ready to use.
Any references?
I'm not really sure if this fits your needs, if you are looking for a history of your pages/content in the cms backend, this might be the way to go: djangocms-history.
django CMS History is an addon application to provide undo/redo
functionality in django CMS, by maintaining content history.

Wagtail vs Mezzanine, which is better for building a customised CMS?

Wagtail and Mezzanine are good open source CMS platforms. But, which one is better to be extended and used to build a Django web app with CMS included?
Well you should probably choose the framework that you are the most familiar with. Otherwise, this article talking about wagtail might be useful.
your Wagtail app is just a simple, vanilla Django app and as such very
easy to integrate with custom models, apps, etc as you build it out.
Link

Python CMS for Etsy-like website

I am a novice in Python and would like to build a website similar to Etsy (same basic functionality, different market).
Functionality:
-User (buyer/seller) profiles
-Ability to upload pictures
-Seller posting
-User-to-user messaging
-Payment platform (directly from buyer to seller)
Can someone please recommend an appropriate Python/Django CMS that would provide: (1) the functionality above and, (2) also be easy for a novice to use?
Thanks!
There is a django based CMS project, which supports many 3rd party plugins.
But you need to learn how to setup a django project first.
https://github.com/divio/django-cms

Intranet opensource in Django?

I'm looking for some open source, free to change and use Intranet written on Python+Django.
Just want to find some foundation to build site on top of it.
If you're looking for a prebuilt site, have a look at Django-CMS, a Content Management System. If what you need is very simple, and you have a large amount of trust in your Users, you can probably get away using the admin contrib package that comes with Django.
For deployment, you're looking at setting up an Apache web server on an internal server somewhere, installing mod_wsgi, and deploying that way. There are many tutorials on how to do this.
Can you please what are features that are needed on your intranet. As Josh suggested, the Django-CMS will do good in most of the cases.

Is Pinax able to be deployed on GAE?

Is there any chance that an application developed with Pinax could be deployed in Google App Engine?
As I know, Pinax is based on Django, and integrates tons of applications, it is suitable for building even a social networking site. It's extremely useful but I wonder if I can deploy it on google app engine.
Thank you,
The main issue here is that Django ORM is not compatible with GAE's datastore but some work has already been made to port Pinax using app-engine-patch. Here is the repository.
The key of course is JOIN support for the many to many model relationships. Since this is already being solved for 'eventual consistency' context, there should be no reason that we couldn't. I'm in the middle of moving the social demo over right now.
"Hoang"-
It looks like there was a release on Aug 2, 2009, to include Django 1.1 (see http://code.google.com/p/app-engine-patch/wiki/ReleaseNotes )
I know you said July, and August 2 isn't much different than July. :)
I, too, am interested in Pinax on App Engine. Please report your findings, if you try it!
Pinaxcombo does it only for the blog part of Pinax. Has there been any effort to port the 'entire' Pinax onto GAE?