forked from DGNum/gestioCOF
11 lines
269 B
Python
11 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()
|