diff options
author | Daniel Friesel <derf@finalrewind.org> | 2022-07-11 22:09:26 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2022-07-11 22:09:26 +0200 |
commit | 5eab0c14f4feb5b369d9e1605f0d1f8ba413bb6e (patch) | |
tree | 3ffda5aa6573903c8dccd429d873b0b86e8b0ff4 /templates/account.html.ep | |
parent | 4deb0bde0b36a175922bb0b274087f1b19762c4c (diff) |
optionally link to external departure boards where sensible (WiP)
Diffstat (limited to 'templates/account.html.ep')
-rw-r--r-- | templates/account.html.ep | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/account.html.ep b/templates/account.html.ep index bce4dcb..7658237 100644 --- a/templates/account.html.ep +++ b/templates/account.html.ep @@ -25,6 +25,9 @@ % elsif ($success eq 'use_history') { <span class="card-title">Einstellungen zu vorgeschlagenen Verbindungen geändert</span> % } + % elsif ($success eq 'external') { + <span class="card-title">Einstellungen zu externen Diensten geändert</span> + % } % elsif ($success eq 'webhook') { <span class="card-title">Web Hook aktualisiert</span> % } @@ -145,6 +148,18 @@ </td> </tr> <tr> + <th scope="row">Externe Dienste</th> + <td> + <a href="/account/services"><i class="material-icons">edit</i></a> + % if ($acc->{sb_name}) { + Abfahrtstafel: <%= $acc->{sb_name} %> + % } + % else { + <span style="color: #999999;">Keine</span> + % } + </td> + </tr> + <tr> <th scope="row">Registriert am</th> <td><%= $acc->{registered_at}->strftime('%d.%m.%Y %H:%M') %></td> </tr> |