summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2015-09-28 22:56:39 +0200
committerDaniel Friesel <derf@finalrewind.org>2015-09-28 22:56:39 +0200
commit536ee9240fa3fc73a4b38d862d317b1806a45911 (patch)
tree98d7b56e2c3f69627e5c692f349b5faa5244a6c0 /templates
parent047b94d3cbb3efbfdd2a7b3600791cb0d7415709 (diff)
candidate foo
Diffstat (limited to 'templates')
-rw-r--r--templates/main.html.ep16
1 files changed, 14 insertions, 2 deletions
diff --git a/templates/main.html.ep b/templates/main.html.ep
index 589f690..7ecc456 100644
--- a/templates/main.html.ep
+++ b/templates/main.html.ep
@@ -105,13 +105,25 @@ other German transit networks.
<div class="field">
<div class="desc">Stadt</div>
<div>
- %= text_field 'city'
+ % if (stash('place_candidates') and @{ stash('place_candidates') } ) {
+ % my @candidates = map { [ $_, $_ ] } @{ stash('place_candidates') };
+ %= select_field city => \@candidates
+ % }
+ % else {
+ %= text_field 'city'
+ % }
</div>
</div>
<div class="field">
<div class="desc">Haltestelle</div>
<div>
- %= text_field 'stop'
+ % if (stash('name_candidates') and @{ stash('name_candidates') } ) {
+ % my @candidates = map { [ $_, $_ ] } @{ stash('name_candidates') };
+ %= select_field stop => \@candidates
+ % }
+ % else {
+ %= text_field 'stop'
+ % }
%= submit_button 'Display'
</div>
</div>