aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template
diff options
context:
space:
mode:
authorDhruv Goel <dhruv.goel92@gmail.com>2012-04-13 21:29:31 +0530
committerDhruv Goel <dhruv.goel92@gmail.com>2012-05-17 14:02:28 +0530
commit71f84164805293a2ab5c70ec49799ee8bfa5eac3 (patch)
treec0c15280b08160cbc13b322796089c537daf0a7d /phpBB/styles/prosilver/template
parentbdf66b27ab6e46cfb1978feb05b13c83c9bd9597 (diff)
downloadforums-71f84164805293a2ab5c70ec49799ee8bfa5eac3.tar
forums-71f84164805293a2ab5c70ec49799ee8bfa5eac3.tar.gz
forums-71f84164805293a2ab5c70ec49799ee8bfa5eac3.tar.bz2
forums-71f84164805293a2ab5c70ec49799ee8bfa5eac3.tar.xz
forums-71f84164805293a2ab5c70ec49799ee8bfa5eac3.zip
[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
Diffstat (limited to 'phpBB/styles/prosilver/template')
-rw-r--r--phpBB/styles/prosilver/template/ucp_profile_autologin_keys.html18
1 files changed, 11 insertions, 7 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_profile_autologin_keys.html b/phpBB/styles/prosilver/template/ucp_profile_autologin_keys.html
index 89913d21bf..e4dd954d39 100644
--- a/phpBB/styles/prosilver/template/ucp_profile_autologin_keys.html
+++ b/phpBB/styles/prosilver/template/ucp_profile_autologin_keys.html
@@ -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>