From dcad487e586b60b6baf1a803c381bd7aec5f3078 Mon Sep 17 00:00:00 2001 From: orbitroom Date: Fri, 1 Jan 2016 22:15:51 -0600 Subject: [PATCH] Added TCU's to Timerboard Added TCU' to Timerboard --- timerboard/form.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')