diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-07-18 18:53:31 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-07-18 18:53:31 +0200 |
commit | ff12f010380914f9461966f2ef8ac6b303712ee4 (patch) | |
tree | dd3d9890320228e11b826c631671a67ad99c38b8 /templates | |
parent | 9bf27132cbf2f87bca5af564914d96a57045ecc1 (diff) |
Add language selection to account page
Diffstat (limited to 'templates')
-rw-r--r-- | templates/account.html.ep | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/account.html.ep b/templates/account.html.ep index 4c5add8..837f219 100644 --- a/templates/account.html.ep +++ b/templates/account.html.ep @@ -16,6 +16,9 @@ % elsif ($success eq 'password') { <span class="card-title">Passwort geändert</span> % } + % elsif ($success eq 'language') { + <span class="card-title">Sprache geändert</span> + % } % elsif ($success eq 'privacy') { <span class="card-title">Einstellungen zu öffentlichen Account-Daten geändert</span> % } @@ -61,6 +64,10 @@ <td><a href="/account/password"><i class="material-icons">edit</i></a></td> </tr> <tr> + <th scope="row"><%= L('account.language') %></th> + <td><a href="/account/language"><i class="material-icons">edit</i></a><%= $acc->{languages}[0] // q{} %></td> + </tr> + <tr> <th scope="row"><%= L('account.connections') %></th> <td> <a href="/account/insight"><i class="material-icons">edit</i></a> |