mirror of
https://github.com/derf/travelynx
synced 2024-11-10 06:54:17 +00:00
manual station entry: HAFAS support
This commit is contained in:
parent
379da61de4
commit
54547eb3af
2 changed files with 12 additions and 2 deletions
|
@ -1095,7 +1095,17 @@ sub redirect_to_station {
|
|||
my ($self) = @_;
|
||||
my $station = $self->param('station');
|
||||
|
||||
$self->redirect_to("/s/${station}");
|
||||
if ( my $s = $self->app->stations->search($station) ) {
|
||||
if ( $s->{hafas} ) {
|
||||
$self->redirect_to("/s/${station}?hafas=1");
|
||||
}
|
||||
else {
|
||||
$self->redirect_to("/s/${station}");
|
||||
}
|
||||
}
|
||||
else {
|
||||
$self->redirect_to("/s/${station}?hafas=1");
|
||||
}
|
||||
}
|
||||
|
||||
sub cancelled {
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
%= form_for 'list_departures' => begin
|
||||
<div class="input-field">
|
||||
%= text_field 'station', id => 'station', class => 'autocomplete contrast-color-text', autocomplete => 'off', required => undef
|
||||
<label for="station">Manuelle Eingabe (Name oder DS100)</label>
|
||||
<label for="station">Manuelle Eingabe</label>
|
||||
</div>
|
||||
<div class="center-align">
|
||||
<button class="btn waves-effect waves-light btn-flat" type="submit" name="action" value="departures">
|
||||
|
|
Loading…
Reference in a new issue