-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser_popover.tpl
35 lines (35 loc) · 1.47 KB
/
user_popover.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
<div class="pr-3 pl-3 pr-md-5 pl-md-5 pt-4 pb-3">
<div class="row align-items-center h-100">
<div class="col-md-4">
<a href="{$PROFILE}"><img style="max-width:100%" src="{$AVATAR}" alt="{$USERNAME}" class="rounded-circle" /></a>
</div>
<div class="col-md-8">
<span style="font-size:1.2rem;">
<a href="{$PROFILE}" style="{$STYLE}">{$NICKNAME}</a>
<hr style="margin-top:0;margin-bottom:0.5rem" />
{if count($GROUPS)}
{foreach from=$GROUPS item=group}
{$group}
{/foreach}
</span>
<br /><br />
<div style="text-center">
{if isset($REGISTERED)}<small>{$REGISTERED}</small><br />{/if}
{if isset($TOPICS) && isset($POSTS)}
<div class="row">
<div class="col-md-6">
<small>{$TOPICS}</small>
</div>
<div class="col-md-6">
<small>{$POSTS}</small>
</div>
</div>
{/if}
</div>
{else}
<div class="badge badge-secondary">{$GUEST}</div>
</span>
{/if}
</div>
</div>
</div>