Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/5monkeys/djedi-cms
Django content management as it should be
https://github.com/5monkeys/djedi-cms
Last synced: 3 months ago
JSON representation
Django content management as it should be
- Host: GitHub
- URL: https://github.com/5monkeys/djedi-cms
- Owner: 5monkeys
- License: bsd-3-clause
- Created: 2013-09-17T12:01:41.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2024-01-09T11:17:26.000Z (10 months ago)
- Last Synced: 2024-07-20T03:13:50.859Z (4 months ago)
- Language: CSS
- Homepage:
- Size: 3.76 MB
- Stars: 83
- Watchers: 11
- Forks: 31
- Open Issues: 41
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
Django content management as it should be.
[![Build Status](https://github.com/5monkeys/djedi-cms/workflows/CI/badge.svg)](https://github.com/5monkeys/djedi-cms/actions)
[![Coverage Status](https://coveralls.io/repos/5monkeys/djedi-cms/badge.svg?branch=master&service=github)](https://coveralls.io/github/5monkeys/djedi-cms?branch=master)
[![Version](https://img.shields.io/pypi/v/djedi-cms.svg)](https://pypi.python.org/pypi/djedi-cms/)
[![Python Versions](https://img.shields.io/pypi/pyversions/djedi-cms.svg)](https://pypi.python.org/pypi/djedi-cms/)## Documentation
Read the full [documentation][docs] or get a quick brief below.
## Install
```sh
$ pip install djedi-cms
```## Configure
Example settings for Django 2.0:
```python
# settings.pyINSTALLED_APPS = (
# ...
"djedi",
)MIDDLEWARE = [
"djedi.middleware.translation.DjediTranslationMiddleware",
# ...
]
```### Bootstrap database
```sh
$ django-admin.py migrate djedi
```### Enable admin
```python
# urls.pyurlpatterns = [
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
```django
{% load djedi_tags %}
{% node 'page/title.txt' default='Djedi' %}
{% blocknode 'page/body.md' %}
## I'm a djedi apprentice
This is fun!
{% endblocknode %}```
## Integrations
* [React][]: [djedi-react](djedi-react#djedi-react)
[docs]: https://djedi-cms.org/
[content-io]: https://github.com/5monkeys/content-io/
[react]: https://reactjs.org/