mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30:15 +02:00
Merge pull request #973 from soratidus999/timerupdates
Updated Structure Choices
This commit is contained in:
commit
1caa4b6baa
@ -5,14 +5,26 @@ from django.utils.translation import ugettext_lazy as _
|
|||||||
|
|
||||||
|
|
||||||
class TimerForm(forms.Form):
|
class TimerForm(forms.Form):
|
||||||
structure_choices = [('POCO', 'POCO'), ('I-HUB', 'I-HUB'), ('POS[S]', 'POS[S]'),
|
structure_choices = [('POCO', 'POCO'),
|
||||||
('POS[M]', 'POS[M]'), ('POS[L]', 'POS[L]'), ('Citadel[M]', 'Citadel[M]'),
|
('I-HUB', 'I-HUB'),
|
||||||
('Citadel[L]', 'Citadel[L]'), ('Citadel[XL]', 'Citadel[XL]'),
|
('POS[S]', 'POS[S]'),
|
||||||
|
('POS[M]', 'POS[M]'),
|
||||||
|
('POS[L]', 'POS[L]'),
|
||||||
|
('Citadel[M]', 'Citadel[M]'),
|
||||||
|
('Citadel[L]', 'Citadel[L]'),
|
||||||
|
('Citadel[XL]', 'Citadel[XL]'),
|
||||||
('Engineering Complex[M]', 'Engineering Complex[M]'),
|
('Engineering Complex[M]', 'Engineering Complex[M]'),
|
||||||
('Engineering Complex[L]', 'Engineering Complex[L]'),
|
('Engineering Complex[L]', 'Engineering Complex[L]'),
|
||||||
('Engineering Complex[XL]', 'Engineering Complex[XL]'),
|
('Engineering Complex[XL]', 'Engineering Complex[XL]'),
|
||||||
('Station', 'Station'), ('TCU', 'TCU'), (_('Other'), _('Other'))]
|
('Refinery[M]', 'Refinery[M]'),
|
||||||
objective_choices = [('Friendly', _('Friendly')), ('Hostile', _('Hostile')), ('Neutral', _('Neutral'))]
|
('Refinery[L]', 'Refinery[L]'),
|
||||||
|
('Station', 'Station'),
|
||||||
|
('TCU', 'TCU'),
|
||||||
|
('Moon Mining Cycle', 'Moon Mining Cycle'),
|
||||||
|
(_('Other'), _('Other'))]
|
||||||
|
objective_choices = [('Friendly', _('Friendly')),
|
||||||
|
('Hostile', _('Hostile')),
|
||||||
|
('Neutral', _('Neutral'))]
|
||||||
|
|
||||||
details = forms.CharField(max_length=254, required=True, label=_('Details'))
|
details = forms.CharField(max_length=254, required=True, label=_('Details'))
|
||||||
system = forms.CharField(max_length=254, required=True, label=_("System"))
|
system = forms.CharField(max_length=254, required=True, label=_("System"))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user