Files
comment/templates/comment_info.tpl

47 lines
1.5 KiB
Smarty

<div class="author-info-popover">
<ul class="list-unstyled mb-0 small">
<li class="mb-1">
<strong>{#COMMENT_USER_NAME#}:</strong>
{$c.comment_author_name|stripslashes|escape}
</li>
{if $c.date_value}
<li class="mb-1">
<strong>{$c.date_label}:</strong>
{$c.date_value|date_format:$TIME_FORMAT|pretty_date}
</li>
{/if}
{if $c.last_visit}
<li class="mb-1">
<strong>Последний визит:</strong>
{$c.last_visit|date_format:$TIME_FORMAT|pretty_date}
</li>
{/if}
{foreach from=$custom_fields item=field}
<li class="mb-1">
<strong>{$field.title}:</strong> {$field.value}
</li>
{/foreach}
<li class="mb-1">
<strong>{#COMMENT_USER_COMMENTS#}:</strong>
{$c.num}
</li>
<li class="mt-2 pt-2 border-top">
<strong>Рейтинг автора:</strong>
<span class="text-warning shadow-sm-text">
{section name=star start=1 loop=6}
{if $smarty.section.star.index <= $c.avg_rating}
<i class="bi-star-fill"></i>
{else}
<i class="bi-star text-muted"></i>
{/if}
{/section}
</span>
<small class="text-secondary">({$c.total_votes|default:0} гол.)</small>
</li>
</ul>
</div>