8 lines
142 B
Python
8 lines
142 B
Python
|
from django import forms
|
||
|
|
||
|
|
||
|
class ConfirmationForm(forms.Form):
|
||
|
""" No fields here, this is just a generic confirmation form """
|
||
|
|
||
|
pass
|