summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2015-03-27 16:23:37 +0100
committerDaniel Friesel <derf@finalrewind.org>2015-03-27 16:23:37 +0100
commit644248474333ed76b999a6c9a7278a5949773418 (patch)
tree1ee3b96d20774d1cffbd5025f0e99fe9a38163d8
parent219a651785f2391fd96cb54a592c838ef81de93d (diff)
move query filters to filterform template
-rw-r--r--templates/barform.html.ep47
-rw-r--r--templates/filterform.html.ep45
-rw-r--r--templates/topform.html.ep47
3 files changed, 47 insertions, 92 deletions
diff --git a/templates/barform.html.ep b/templates/barform.html.ep
index 7aa329e..50ae5fc 100644
--- a/templates/barform.html.ep
+++ b/templates/barform.html.ep
@@ -27,51 +27,6 @@ x
Pixel.
%= submit_button 'Go'
<br/>
-% my $filter_opts = $self->barplot_filters;
Optionale Einschränkungen:
-<div class="field">
- <div class="desc">
- Linie:
- </div>
- <div>
- %= select_field filter_line => $filter_opts->{lines}
- </div>
-</div>
-<div class="field">
- <div class="desc">
- Zugtyp:
- </div>
- <div>
- %= select_field filter_train_type => $filter_opts->{train_types}
- </div>
-</div>
-<div class="field">
- <div class="desc">
- Bahnhof:
- </div>
- <div>
- %= select_field filter_station => $filter_opts->{stations}
- </div>
-</div>
-<div class="field">
- <div class="desc">
- Zielbahnhof:
- </div>
- <div>
- %= select_field filter_destination => $filter_opts->{destinations}
- </div>
-</div>
-<div class="field">
- <div class="desc">
- Verspätung zwischen
- </div>
- <div>
- %= text_field 'filter_delay_min', class => 'delay', placeholder => '-∞'
- und
- %= text_field 'filter_delay_max', class => 'delay', placeholder => '+∞'
- Minuten (inklusive).
- %= submit_button 'Go'
- </div>
-</div>
+%= include 'filterform';
% end
-<div>
diff --git a/templates/filterform.html.ep b/templates/filterform.html.ep
new file mode 100644
index 0000000..186b7d6
--- /dev/null
+++ b/templates/filterform.html.ep
@@ -0,0 +1,45 @@
+% my $filter_opts = $self->barplot_filters;
+<div class="field">
+ <div class="desc">
+ Linie:
+ </div>
+ <div>
+ %= select_field filter_line => $filter_opts->{lines}
+ </div>
+</div>
+<div class="field">
+ <div class="desc">
+ Zugtyp:
+ </div>
+ <div>
+ %= select_field filter_train_type => $filter_opts->{train_types}
+ </div>
+</div>
+<div class="field">
+ <div class="desc">
+ Bahnhof:
+ </div>
+ <div>
+ %= select_field filter_station => $filter_opts->{stations}
+ </div>
+</div>
+<div class="field">
+ <div class="desc">
+ Zielbahnhof:
+ </div>
+ <div>
+ %= select_field filter_destination => $filter_opts->{destinations}
+ </div>
+</div>
+<div class="field">
+ <div class="desc">
+ Verspätung zwischen
+ </div>
+ <div>
+ %= text_field 'filter_delay_min', class => 'delay', placeholder => '-∞'
+ und
+ %= text_field 'filter_delay_max', class => 'delay', placeholder => '+∞'
+ Minuten (inklusive).
+ %= submit_button 'Go'
+ </div>
+</div>
diff --git a/templates/topform.html.ep b/templates/topform.html.ep
index ee2e784..cb35c2f 100644
--- a/templates/topform.html.ep
+++ b/templates/topform.html.ep
@@ -1,51 +1,6 @@
<div>
%= form_for top => begin
-% my $filter_opts = $self->barplot_filters;
Nach Häufigkeit sortierte Verspätungs- und Qualitätsmeldungen.
Die Einschränkungen sind alle optional.
-<div class="field">
- <div class="desc">
- Linie:
- </div>
- <div>
- %= select_field filter_line => $filter_opts->{lines}
- </div>
-</div>
-<div class="field">
- <div class="desc">
- Zugtyp:
- </div>
- <div>
- %= select_field filter_train_type => $filter_opts->{train_types}
- </div>
-</div>
-<div class="field">
- <div class="desc">
- Bahnhof:
- </div>
- <div>
- %= select_field filter_station => $filter_opts->{stations}
- </div>
-</div>
-<div class="field">
- <div class="desc">
- Zielbahnhof:
- </div>
- <div>
- %= select_field filter_destination => $filter_opts->{destinations}
- </div>
-</div>
-<div class="field">
- <div class="desc">
- Verspätung zwischen
- </div>
- <div>
- %= text_field 'filter_delay_min', class => 'delay', placeholder => '-∞'
- und
- %= text_field 'filter_delay_max', class => 'delay', placeholder => '+∞'
- Minuten (inklusive).
- %= submit_button 'Go'
- </div>
-</div>
+%= include 'filterform';
% end
-<div>