Files
eggs-backend/core/http/forms/another.py
husanjon ab73d05ecc
Some checks failed
Build and Push to Docker Hub / build-test-push (push) Failing after 1m55s
gold eggs backend
2026-04-15 08:59:36 +02:00

18 lines
309 B
Python

"""
Project base forms
"""
from django import forms
from django_ckeditor_5 import widgets
from core.http import models
class PostAdminForm(forms.ModelForm):
class Meta:
model = models.Post
widgets = {
"desc": widgets.CKEditor5Widget(),
}
fields = "__all__"