summaryrefslogtreecommitdiffstats
path: root/templates/shared/blocked_users_list.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/shared/blocked_users_list.tmpl')
-rw-r--r--templates/shared/blocked_users_list.tmpl28
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/shared/blocked_users_list.tmpl b/templates/shared/blocked_users_list.tmpl
new file mode 100644
index 0000000..409b7f4
--- /dev/null
+++ b/templates/shared/blocked_users_list.tmpl
@@ -0,0 +1,28 @@
+<div class="flex-list">
+ {{range .BlockedUsers}}
+ <div class="flex-item flex-item-center">
+ <div class="flex-item-leading">
+ {{ctx.AvatarUtils.Avatar . 48}}
+ </div>
+ <div class="flex-item-main">
+ <div class="flex-item-title">
+ {{template "shared/user/name" .}}
+ </div>
+ <div class="flex-item-body">
+ <span>{{ctx.Locale.Tr "settings.blocked_since" (DateTime "short" .CreatedUnix)}}</span>
+ </div>
+ </div>
+ <div class="flex-item-trailing">
+ <form action="{{$.Link}}/unblock" method="post">
+ {{$.CsrfTokenHtml}}
+ <input type="hidden" name="user_id" value="{{.ID}}">
+ <button class="ui red button">{{ctx.Locale.Tr "user.unblock"}}</button>
+ </form>
+ </div>
+ </div>
+ {{else}}
+ <div class="flex-item">
+ <span class="text grey italic">{{ctx.Locale.Tr "settings.blocked_users_none"}}</span>
+ </div>
+ {{end}}
+</div>