init f0ckm
This commit is contained in:
28
views/comments_user-partial.html
Normal file
28
views/comments_user-partial.html
Normal file
@@ -0,0 +1,28 @@
|
||||
<div class="profile_head">
|
||||
@if(user.avatar_file)
|
||||
<div class="profile_head_avatar">
|
||||
<img src="/a/{{ user.avatar_file }}" style="display: grid;width: 55px" />
|
||||
</div>
|
||||
@elseif(user.avatar && user.avatar > 0)
|
||||
<div class="profile_head_avatar">
|
||||
<img src="/t/{{ user.avatar }}.webp" style="display: grid;width: 55px" />
|
||||
</div>
|
||||
@endif
|
||||
<div class="layersoffear">
|
||||
<div class="profile_head_username">
|
||||
<span @if(user.username_color) style="color: {{ user.username_color }}" @endif>{{ t('profile.comments_title').replace('{user}', user.user) }}</span>
|
||||
</div>
|
||||
<div class="profile_head_user_stats">
|
||||
<a href="/user/{!! user.user !!}">{{ t('profile.back_to_profile') }}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="user_content_wrapper" style="display: block;">
|
||||
<div class="comments-list-page" style="max-width: 800px; margin: 0 auto;">
|
||||
<!-- Container for CSR comments -->
|
||||
<div id="user-comments-container" data-user="{!! user.user !!}"></div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Include local script for this page -->
|
||||
<script src="/s/js/user_comments.js?v=1"></script>
|
||||
Reference in New Issue
Block a user