account: move edit links to the left
This commit is contained in:
parent
f0d61a4083
commit
1bf128936d
1 changed files with 4 additions and 3 deletions
|
@ -30,15 +30,16 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row">Mail</th>
|
<th scope="row">Mail</th>
|
||||||
<td><%= $acc->{email} %><a href="/change_mail" style="margin-left: 1em;"><i class="material-icons">edit</i> ändern</a></td>
|
<td><a href="/change_mail"><i class="material-icons">edit</i></a><%= $acc->{email} %></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row">Passwort</th>
|
<th scope="row">Passwort</th>
|
||||||
<td><a href="/change_password"><i class="material-icons">edit</i> ändern</a></td>
|
<td><a href="/change_password"><i class="material-icons">edit</i></a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row">Privatsphäre</th>
|
<th scope="row">Privatsphäre</th>
|
||||||
<td>
|
<td>
|
||||||
|
<a href="/account/privacy"><i class="material-icons">edit</i></a>
|
||||||
% if ($acc->{is_public} == 0) {
|
% if ($acc->{is_public} == 0) {
|
||||||
Keine öffentlichen Daten
|
Keine öffentlichen Daten
|
||||||
% }
|
% }
|
||||||
|
@ -48,7 +49,7 @@
|
||||||
% if ($acc->{is_public} & 0x02) {
|
% if ($acc->{is_public} & 0x02) {
|
||||||
Status
|
Status
|
||||||
% }
|
% }
|
||||||
<a href="/account/privacy"><i class="material-icons">edit</i> ändern</a></td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row">Registriert am</th>
|
<th scope="row">Registriert am</th>
|
||||||
|
|
Loading…
Reference in a new issue