mirror of
https://github.com/derf/travelynx
synced 2024-11-10 06:54:17 +00:00
128 lines
3.8 KiB
Text
128 lines
3.8 KiB
Text
<h1>Fahrt bearbeiten</h1>
|
|
% if ($error and $error eq 'notfound') {
|
|
<div class="row">
|
|
<div class="col s12">
|
|
<div class="card caution-color">
|
|
<div class="card-content white-text">
|
|
<span class="card-title">Fehler</span>
|
|
<p>Fahrt nicht gefunden.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
% }
|
|
% else {
|
|
% if ($error) {
|
|
<div class="row">
|
|
<div class="col s12">
|
|
<div class="card caution-color">
|
|
<div class="card-content white-text">
|
|
<span class="card-title">Ungültige Eingabe</span>
|
|
<p><%= $error %></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
% }
|
|
%= form_for '/journey/edit' => (method => 'POST') => begin
|
|
%= csrf_field
|
|
%= hidden_field 'journey_id' => param('journey_id')
|
|
<div class="row">
|
|
<div class="col s12">
|
|
<p>
|
|
Fahrt von
|
|
<b><%= $journey->{from_name} %></b>
|
|
nach
|
|
<b><%= $journey->{to_name} %></b>
|
|
am
|
|
<b><%= $journey->{sched_departure}->strftime('%d.%m.%Y') %></b>
|
|
</p>
|
|
<p>
|
|
Nach einer Änderung können die ursprünglich eingetragenen
|
|
Daten nicht wiederhergestellt werden.
|
|
</p>
|
|
<table class="striped">
|
|
<tr>
|
|
<th scope="row">Fahrt</th>
|
|
<td>
|
|
<%= $journey->{type} %> <%= $journey->{no} %>
|
|
% if ($journey->{line}) {
|
|
(Linie <%= $journey->{line} %>)
|
|
% }
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"></th>
|
|
<td>
|
|
<label>
|
|
%= check_box cancelled => 1
|
|
<span>Fahrt ist ausgefallen</span>
|
|
</label>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Start:</th>
|
|
<td class="input-field">
|
|
%= text_field 'from_name', id => 'from_name', class => 'autocomplete validate', autocomplete => 'off', required => undef
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Geplante Abfahrt</th>
|
|
<td class="input-field">
|
|
%= text_field 'sched_departure', id => 'sched_departure', class => 'validate', required => undef, pattern => '[0-9][0-9]?[.][0-9][0-9]?[.][0-9][0-9][0-9][0-9] +[0-9][0-9]:[0-9][0-9]'
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Tatsächliche Abfahrt</th>
|
|
<td class="input-field">
|
|
%= text_field 'rt_departure', id => 'real_departure', class => 'validate', pattern => '[0-9][0-9]?[.][0-9][0-9]?[.][0-9][0-9][0-9][0-9] +[0-9][0-9]:[0-9][0-9]'
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Ziel:</th>
|
|
<td class="input-field">
|
|
%= text_field 'to_name', id => 'to_name', class => 'autocomplete validate', autocomplete => 'off', required => undef
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Geplante Ankunft</th>
|
|
<td class="input-field">
|
|
%= text_field 'sched_arrival', id => 'sched_arrival', class => 'validate', required => undef, pattern => '[0-9][0-9]?[.][0-9][0-9]?[.][0-9][0-9][0-9][0-9] +[0-9][0-9]:[0-9][0-9]'
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Tatsächliche Ankunft</th>
|
|
<td class="input-field">
|
|
%= text_field 'rt_arrival', id => 'real_arrival', class => 'validate', pattern => '[0-9][0-9]?[.][0-9][0-9]?[.][0-9][0-9][0-9][0-9] +[0-9][0-9]:[0-9][0-9]'
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Route</th>
|
|
<td class="input-field">
|
|
%= text_area 'route', id => 'route', class => 'materialize-textarea'
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Kommentar</th>
|
|
<td class="input-field">
|
|
%= text_field 'comment'
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col s6 m6 l6 center-align">
|
|
<a href="/journey/<%= param('journey_id') %>" class="waves-effect waves-light btn">
|
|
Abbrechen
|
|
</a>
|
|
</div>
|
|
<div class="col s6 m6 l6 center-align">
|
|
<button class="btn waves-effect waves-light" type="submit" name="action" value="save">
|
|
Speichern
|
|
<i class="material-icons right" aria-hidden="true">send</i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
%= end
|
|
% }
|