diff options
-rw-r--r-- | templates/barform.html.ep | 47 | ||||
-rw-r--r-- | templates/filterform.html.ep | 45 | ||||
-rw-r--r-- | templates/topform.html.ep | 47 |
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> |