12 lines
222 B
Python
12 lines
222 B
Python
from django import forms
|
|
|
|
from deployment.models import Type
|
|
|
|
|
|
class DeploymentForm(forms.Form):
|
|
name = forms.CharField()
|
|
type = forms.ChoiceField(
|
|
required=True,
|
|
choices=Type.into_choices(),
|
|
)
|