django-simplecms/cms/forms.py

10 wiersze
246 B
Python
Czysty Zwykły widok Historia

2019-03-27 15:49:14 +00:00
from django import forms
from .models import Page, Section
class PageForm(forms.ModelForm):
class Meta:
model = Page
fields = '__all__'
2019-04-02 12:05:14 +00:00
SectionFormSet = forms.inlineformset_factory(Page, Section, exclude='__all__', extra=1)