Home > Enterprise >  There is another cms for django?(not "django CMS") or why i should use django cms?
There is another cms for django?(not "django CMS") or why i should use django cms?

Time:04-08

I own a site that sells WordPress templates. Recently, I was trying to create Django-based templates, which I found after a bit of searching on the Django CMS site. But then I went to install it and figure out how to make a template for it, I just realized Just installing Django CMS is difficult for the simple user, but even for me, the programmer, it is difficult to install. Is there no substitute for it? Or how can I make it easier for my users to install?

CodePudding user response:

Django is a generic web software framework; trying to compare it in itself to WordPress is quite apples-to-oranges.

Django CMS, which you've found, is one CMS application for Django. Wagtail is another popular one. (There are a bunch more. It's also not unheard of for someone to roll their own CMS on top of Django.)

Templates for one Django-based CMS aren't necessarily usable with another Django-based CMS.

  • Related