pip install django-feincms
django-admin startproject myproject
python
from feincms.module.page.models import Page
class MyModule(Page):
title = models.CharField(max_length=100)
content = models.TextField()
html
{% load feincms_tags %}
{% for page in feincms_page.children %}
<h1>{{ page.title }}</h1>
{{ page.content }}
{% endfor %}