start building rota functions into site
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
|
||||
from django.forms import (
|
||||
Form,
|
||||
ModelForm,
|
||||
ModelMultipleChoiceField,
|
||||
ModelChoiceField,
|
||||
ChoiceField,
|
||||
CharField,
|
||||
HiddenInput,
|
||||
EmailField,
|
||||
IntegerField,
|
||||
)
|
||||
from django.forms import inlineformset_factory
|
||||
from atlas.models import CaseCollection
|
||||
from django.contrib.auth.models import User
|
||||
|
||||
from rota.models import UserRotaDetail
|
||||
|
||||
class UserRotaDetailForm(ModelForm):
|
||||
class Meta:
|
||||
model = UserRotaDetail
|
||||
exclude = ("",)
|
||||
Reference in New Issue
Block a user