freebsd-ports/www/py-django-ckeditor-5/pkg-descr

9 lines
246 B
Text
Raw Normal View History

Add to your models.py:
from django.db import models
from django_ckeditor_5.fields import CKEditor5Field
class Article(models.Model):
title=models.CharField('Title', max_length=200)
text=CKEditor5Field('Text', config_name='extends')