-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcc_start.tpl
48 lines (48 loc) · 1.33 KB
/
cc_start.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!-- BEGIN TEMPLATE cc_start.tpl -->
<div class="generic">
<dl>
<dt>{LANG->Username}:</dt>
<dd>{PROFILE->username}</dd>
{IF PROFILE->real_name}
<dt>{LANG->RealName}:</dt>
<dd>{PROFILE->real_name}</dd>
{/IF}
<dt>{LANG->Email}:</dt>
<dd>{PROFILE->email}</dd>
<dt>{LANG->DateReg}:</dt>
<dd>{PROFILE->date_added}</dd>
{IF PROFILE->date_last_active}
<dt>{LANG->DateActive}:</dt>
<dd>{PROFILE->date_last_active}</dd>
{/IF}
<dt>{LANG->Posts}:</dt>
<dd>{PROFILE->posts}</dd>
<dt>{LANG->Signature}:</dt>
<dd>{PROFILE->signature_formatted}</dd>
{HOOK "tpl_cc_start" PROFILE}
</dl>
</div>
{IF PROFILE->admin OR UserPerms}
<div class="generic">
<h4>{LANG->UserPermissions}</h4>
<table cellspacing="0" border="0">
{IF PROFILE->admin}
<tr>
<td>{LANG->PermAdministrator}</td>
</tr>
{ELSEIF UserPerms}
<tr>
<th>{LANG->Forum}</th>
<th>{LANG->Permission}</th>
</tr>
{LOOP UserPerms}
<tr>
<td>{UserPerms->forum} </td>
<td>{UserPerms->perm}</td>
</tr>
{/LOOP UserPerms}
{/IF}
</table>
</div>
{/IF}
<!-- END TEMPLATE cc_start.tpl -->