forked from DGNum/gestioCOF
12 lines
269 B
Python
12 lines
269 B
Python
|
from django.db import models
|
||
|
|
||
|
# Create your models here.
|
||
|
from wagtail.wagtailcore.models import Page, Orderable
|
||
|
|
||
|
from wagtail.wagtailcore.fields import RichTextField, StreamField
|
||
|
from wagtail.wagtailcore import blocks
|
||
|
|
||
|
|
||
|
class COFPage(Page):
|
||
|
corps = RichTextField()
|