9 lines
210 B
Python
9 lines
210 B
Python
from django import forms
|
|
|
|
|
|
class TeamForm(forms.Form):
|
|
name = forms.CharField(label="Team's name", max_length=32)
|
|
|
|
|
|
class FlagForm(forms.Form):
|
|
name = forms.UUIDField(label="Identifier", max_length=32)
|