[Answered ]-Analogs for Placeholder from Django-CMS or Streamfield from Wagtail without cms itself

2👍

Django CMS is very modular – you do not need to bring in the whole URL and page management interface.

You can enhance your existing models with Django CMS’s placeholder fields and use the rich structure mode and plugins only, for example:

from django.db import models
from cms.models.fields import PlaceholderField

class MyModel(models.Model):
    # your fields
    my_placeholder = PlaceholderField('placeholder_name')
    # your methods

Example taken from Django CMS documentation.

👤petr

Leave a comment