healthchecks/hc/front/forms.py
2015-07-11 11:45:38 +03:00

8 lines
158 B
Python

from django import forms
from hc.api.models import TIMEOUT_CHOICES
class TimeoutForm(forms.Form):
timeout = forms.ChoiceField(choices=TIMEOUT_CHOICES)