mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-12 14:00:17 +02:00
Merge pull request #240 from orbitroom/master
Add Additional Types and Status to Sigtracker
This commit is contained in:
commit
efb1786e9d
@ -5,8 +5,12 @@ from django.core.validators import MaxValueValidator, MinValueValidator
|
||||
|
||||
class SignatureForm(forms.Form):
|
||||
sigtype = [('Wormhole', 'Wormhole'), ('Combat', 'Combat'), ('Data', 'Data'),
|
||||
('Relic', 'Relic')]
|
||||
status = [('Open', 'Open'), ('Started', 'Started'), ('Finished', 'Finished')]
|
||||
('Relic', 'Relic'), ('Gas', 'Gas'), ('Ore', 'Ore')]
|
||||
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'), ('End of its natural lifetime', 'End of its natural lifetime'),
|
||||
('stability not significantly disrupted', 'stability not significantly disrupted'),
|
||||
('Stability reduced not critical degree yet', 'Stability reduced not critical degree yet'),
|
||||
('Wormhole stability critically disrupted', 'Wormhole stability critically disrupted')]
|
||||
|
||||
system = forms.CharField(max_length=254, required=True, label='System')
|
||||
ident = forms.CharField(max_length=254, required=True, label="ID")
|
||||
|
Loading…
x
Reference in New Issue
Block a user