diff --git a/stock/templates/registered/timermanagement.html b/stock/templates/registered/timermanagement.html index 1b091272..fe3e08eb 100755 --- a/stock/templates/registered/timermanagement.html +++ b/stock/templates/registered/timermanagement.html @@ -94,6 +94,11 @@ Station {% endifequal %} + {% ifequal closest_timer.structure "TCU" %} +
+ TCU +
+ {% endifequal %} {% ifequal closest_timer.structure "Other" %}
Other @@ -188,7 +193,12 @@
Station
- {% endifequal %} + {% endifequal %} + {% ifequal timer.structure "TCU" %} +
+ TCU +
+ {% endifequal %} {% ifequal timer.structure "Other" %}
Other diff --git a/timerboard/form.py b/timerboard/form.py index 09653b96..c3a83c02 100755 --- a/timerboard/form.py +++ b/timerboard/form.py @@ -5,7 +5,7 @@ from django.core.validators import MaxValueValidator, MinValueValidator 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'), ('Other', 'Other')] + ('POS[M]', 'POS[M]'), ('POS[L]', 'POS[L]'), ('Station', 'Station'), ('TCU', 'TCU'), ('Other', 'Other')] objective_choices = [('Friendly', 'Friendly'), ('Hostile', 'Hostile'), ('Neutral', 'Neutral')] details = forms.CharField(max_length=254, required=True, label='Details')