20 lines
542 B
Python
20 lines
542 B
Python
from frontend.models import Presentation, PresentationEvent, PresentationPerson
|
|
from frontend.forms import PresentationEventForm, PresentationPersonForm
|
|
from django.forms.models import inlineformset_factory
|
|
|
|
PresentationPersonInlineFormset = inlineformset_factory(
|
|
Presentation,
|
|
PresentationPerson,
|
|
form=PresentationPersonForm,
|
|
extra=1,
|
|
can_delete=False
|
|
)
|
|
|
|
PresentationEventInlineFormset = inlineformset_factory(
|
|
Presentation,
|
|
PresentationEvent,
|
|
form=PresentationEventForm,
|
|
extra=1,
|
|
can_delete=False
|
|
)
|