all: invites -> invitations
This commit is contained in:
14
passbook/core/forms/invitations.py
Normal file
14
passbook/core/forms/invitations.py
Normal file
@ -0,0 +1,14 @@
|
||||
"""passbook core invitation form"""
|
||||
|
||||
from django import forms
|
||||
|
||||
from passbook.core.models import Invite
|
||||
|
||||
|
||||
class InviteForm(forms.ModelForm):
|
||||
"""InviteForm"""
|
||||
|
||||
class Meta:
|
||||
|
||||
model = Invite
|
||||
fields = '__all__'
|
Reference in New Issue
Block a user