mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-12 05:50:16 +02:00
Updated Strucure Choices
Added Refineries, and a Moon Mining Option Also changed spacing to be consistent and be easier to read (cherry picked from commit 0474fa6d1761fbbc3661a9edfc9dd6c5fa474761)
This commit is contained in:
parent
4d194457d8
commit
2b2f367c30
@ -32,14 +32,26 @@ class TimerForm(forms.ModelForm):
|
|||||||
kwargs.update({'initial': initial})
|
kwargs.update({'initial': initial})
|
||||||
super(TimerForm, self).__init__(*args, **kwargs)
|
super(TimerForm, self).__init__(*args, **kwargs)
|
||||||
|
|
||||||
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