mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-13 14:30:17 +02:00
9 lines
334 B
Python
9 lines
334 B
Python
|
|
from django import forms
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class FatlinkForm(forms.Form):
|
|
fleet = forms.CharField(label=_("Fleet Name"), max_length=50)
|
|
duration = forms.IntegerField(label=_("Duration of fat-link"), required=True, initial=30, min_value=1, max_value=2147483647, help_text=_('minutes'))
|