mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-14 06:50:15 +02:00
Added Additonal Signature Types and Status
This commit is contained in:
parent
9cd70cb82d
commit
49d2e6251b
@ -5,8 +5,12 @@ from django.core.validators import MaxValueValidator, MinValueValidator
|
|||||||
|
|
||||||
class SignatureForm(forms.Form):
|
class SignatureForm(forms.Form):
|
||||||
sigtype = [('Wormhole', 'Wormhole'), ('Combat', 'Combat'), ('Data', 'Data'),
|
sigtype = [('Wormhole', 'Wormhole'), ('Combat', 'Combat'), ('Data', 'Data'),
|
||||||
('Relic', 'Relic')]
|
('Relic', 'Relic'), ('Gas', 'Gas'), ('Ore', 'Ore')]
|
||||||
status = [('Open', 'Open'), ('Started', 'Started'), ('Finished', 'Finished')]
|
status = [('Open', 'Open'), ('Started', 'Started'), ('Finished', 'Finished'), ('Life cycle has not begun', 'Life cycle has not begun'),
|
||||||
|
('Probably wont last another day', 'Probably wont last another day'), ('Reaching the end of its natural lifetime', 'Reaching the end of its natural lifetime'),
|
||||||
|
('Has not yet had its stability significantly disrupted', 'Has not yet had its stability significantly disrupted'),
|
||||||
|
('Has had its stability reduced, but not to a critical degree yet', 'Has had its stability reduced, but not to a critical degree yet')
|
||||||
|
('This wormhole has had its stability critically disrupted', 'This wormhole has had its stability critically disrupted')]
|
||||||
|
|
||||||
system = forms.CharField(max_length=254, required=True, label='System')
|
system = forms.CharField(max_length=254, required=True, label='System')
|
||||||
ident = forms.CharField(max_length=254, required=True, label="ID")
|
ident = forms.CharField(max_length=254, required=True, label="ID")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user