mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-21 02:08:59 +02:00
Remove redundant name from fatlink. Remove optimer app dependency. And other general cleanup. Thanks @TargetZ3R0
11 lines
369 B
Python
11 lines
369 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'))
|
|
|