1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-01 14:30:32 +02:00

[feature/delete-auto-logins] improved styling and fixes language

Table ahs been styled. Date is now formatted properly instead of
the unix timestamp being displayed earlier. fixes small mistake in language
entry

PHPBB3-9647
This commit is contained in:
Dhruv Goel
2012-04-13 21:29:31 +05:30
parent bdf66b27ab
commit 71f8416480
3 changed files with 13 additions and 9 deletions

View File

@@ -16,21 +16,25 @@
<!-- ENDIF -->
<!-- IF .sessions -->
<p>{L_PROFILE_AUTOLOGIN_KEYS}</p>
<table>
<table cellspacing="1" class="table1">
<thead>
<tr>
<th></th>
<th>Mark</th>
<th>Key</th>
<th>IP</th>
<th>Login-Time</th>
</tr>
</thead>
<tbody>
<!-- BEGIN sessions -->
<tr>
<td><input type="checkbox" name="keys[]" value="{sessions.KEY}" /></td>
<td>{sessions.KEY}</td>
<td>{sessions.IP}</td>
<td>{sessions.LOGIN_TIME}</td>
<!-- IF sessions.S_ROW_COUNT is even --><tr class="bg1"><!-- ELSE --><tr class="bg2"><!-- ENDIF -->
<td style="text-align: center"><input type="checkbox" name="keys[]" value="{sessions.KEY}" id="{sessions.KEY}"/></td>
<td><label for="{sessions.KEY}">{sessions.KEY}</label></td>
<td style="text-align: center">{sessions.IP}</td>
<td style="text-align: center">{sessions.LOGIN_TIME}</td>
</tr>
<!-- END sessions -->
</tbody>
</table>
<!-- ELSE -->
<p>{L_PROFILE_NO_AUTOLOGIN_KEYS}</p>