diff --git a/stock/templates/registered/timermanagement.html b/stock/templates/registered/timermanagement.html index de68535d..bdc3332b 100755 --- a/stock/templates/registered/timermanagement.html +++ b/stock/templates/registered/timermanagement.html @@ -90,6 +90,37 @@ POS [L] {% endifequal %} + {% ifequal timer.structure "Citadel[M]" %} +
+ Citadel [M] +
+ {% endifequal %} + {% ifequal timer.structure "Citadel[L]" %} +
+ Citadel [L] +
+ {% endifequal %} + {% ifequal timer.structure "Citadel[XL]" %} +
+ Citadel [XL] +
+ {% endifequal %} + {% ifequal timer.structure "Engineering Complex[M]" %} +
+ Engineering Complex [M] +
+ {% endifequal %} + {% ifequal timer.structure "Engineering Complex[L]" %} +
+ Engineering Complex [L] +
+ {% endifequal %} + {% ifequal timer.structure "Engineering Complex[XL]" %} +
+ Engineering Complex [XL] +
+ {% endifequal %} + {% ifequal timer.structure "Station" %}
Station @@ -191,11 +222,41 @@ POS [L]
{% endifequal %} + {% ifequal timer.structure "Citadel[M]" %} +
+ Citadel [M] +
+ {% endifequal %} + {% ifequal timer.structure "Citadel[L]" %} +
+ Citadel [L] +
+ {% endifequal %} + {% ifequal timer.structure "Citadel[XL]" %} +
+ Citadel [XL] +
+ {% endifequal %} + {% ifequal timer.structure "Engineering Complex[M]" %} +
+ Engineering Complex [M] +
+ {% endifequal %} + {% ifequal timer.structure "Engineering Complex[L]" %} +
+ Engineering Complex [L] +
+ {% endifequal %} + {% ifequal timer.structure "Engineering Complex[XL]" %} +
+ Engineering Complex [XL] +
+ {% endifequal %} {% ifequal timer.structure "Station" %}
Station
- {% endifequal %} + {% endifequal %} {% ifequal timer.structure "TCU" %}
TCU @@ -292,6 +353,36 @@
POS [L]
+ {% endifequal %} + {% ifequal timer.structure "Citadel[M]" %} +
+ Citadel [M] +
+ {% endifequal %} + {% ifequal timer.structure "Citadel[L]" %} +
+ Citadel [L] +
+ {% endifequal %} + {% ifequal timer.structure "Citadel[XL]" %} +
+ Citadel [XL] +
+ {% endifequal %} + {% ifequal timer.structure "Engineering Complex[M]" %} +
+ Engineering Complex [M] +
+ {% endifequal %} + {% ifequal timer.structure "Engineering Complex[L]" %} +
+ Engineering Complex [L] +
+ {% endifequal %} + {% ifequal timer.structure "Engineering Complex[XL]" %} +
+ Engineering Complex [XL] +
{% endifequal %} {% ifequal timer.structure "Station" %}
diff --git a/timerboard/form.py b/timerboard/form.py index 41685305..c4db4102 100755 --- a/timerboard/form.py +++ b/timerboard/form.py @@ -6,8 +6,12 @@ from django.utils.translation import ugettext_lazy as _ class TimerForm(forms.Form): structure_choices = [('POCO', 'POCO'), ('I-HUB', 'I-HUB'), ('POS[S]', 'POS[S]'), - ('POS[M]', 'POS[M]'), ('POS[L]', 'POS[L]'), ('Station', 'Station'), ('TCU', 'TCU'), - (_('Other'), _('Other'))] + ('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[L]', 'Engineering Complex[L]'), + ('Engineering Complex[XL]', 'Engineering Complex[XL]'), + ('Station', 'Station'), ('TCU', 'TCU'), (_('Other'), _('Other'))] objective_choices = [('Friendly', _('Friendly')), ('Hostile', _('Hostile')), ('Neutral', _('Neutral'))] details = forms.CharField(max_length=254, required=True, label=_('Details'))