mumui/deployment/forms.py
2023-09-16 10:48:47 +02:00

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(),
)