Files @ 04228555827f
Branch filter:

Location: symposion_app/symposion/schedule/forms.py

James Tauber
switched from using nullboolean accepted on proposal result to a more flexible status choice
from django import forms

from symposion.schedule.models import Presentation


class SlotEditForm(forms.Form):
    
    presentation = forms.ModelChoiceField(
        queryset=Presentation.objects.filter(slot__isnull=True),
        required=True,
        empty_label=None,
    )