A lightweight Dynamic Django flatpage application with i18n support and no sites requirements.
i18n has to be enabled for this application to work properly. See the following link for instructions on how to enable Internationalization.
Django >= 2.0.0
- First download or clone the application into your Django Project
cd <YOUR DJANGO PROJECT FOLDER> [Mac / Linux]
dir <YOUR DJANGO PROJECT FOLDER> [Windows]
git clone https://github.com/ggjersund/django-dynpages
- Add dynpages to your INSTALLED APPS list
INSTALLED_APPS = [
...
'dynpages',
...
]
- Make migrations and run migrate
python manage.py makemigrations
python manage.py migrate
- Voila! Visit your Django admin to use add/change dynamic pages.
- Django 2.0.0 - Web Framework
- G. Gjersund - Initial work - ggjersund
See also the list of contributors who participated in this project.
This project is licensed under the GNU General Public License v3.0 - see LICENSE file for details