Popularity
2.0
Growing
Activity
3.4
-
79
10
27
Programming language: CSS
License: BSD 3-clause "New" or "Revised" License
Latest version: v4.0.1
djedi-cms alternatives and similar packages
Based on the "CMS" category.
Alternatively, view djedi-cms alternatives based on common mentions on social networks and blogs.
-
Wagtail
A Django content management system focused on flexibility and user experience -
django-cms
The easy-to-use and developer-friendly enterprise CMS powered by Django -
FeinCMS
A Django-based CMS with a focus on extensibility and concise code -
Kotti
Kotti is a high-level, Pythonic web application framework based on Pyramid and SQLAlchemy. It includes an extensible Content Management System called the Kotti CMS. -
Opps
A Django-based CMS for the magazines, newspappers websites and portals with high-traffic
Access the most powerful time series database as a service
Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
Promo
www.influxdata.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of djedi-cms or a related project?
README
Django content management as it should be.
Documentation
Read the full documentation or get a quick brief below.
Install
$ pip install djedi-cms
Configure
Example settings for Django 2.0:
# settings.py
INSTALLED_APPS = (
# ...
"djedi",
)
MIDDLEWARE = [
"djedi.middleware.translation.DjediTranslationMiddleware",
# ...
]
Bootstrap database
$ django-admin.py migrate djedi
Enable admin
# urls.py
urlpatterns = [
path("admin/", admin.site.urls),
]
For now, only the inline admin are in place, but we are working on the back office admin UI.
Use
{% load djedi_tags %}
<body>
<h1>{% node 'page/title.txt' default='Djedi' %}</h1>
{% blocknode 'page/body.md' %}
## I'm a djedi apprentice
This is fun!
{% endblocknode %}
</body>
Integrations
- React: [djedi-react](djedi-react#djedi-react)