forked from forgejo/forgejo

- Unify blocked users list. - Use the new flex list classes for blocked users list to avoid using the CSS helper classes and thereby be consistent in the design. - Fix the modal by using the new modal class. - Remove the icon in the modal as looks too big in the new design. - Fix avatar not displaying as it was passing the context where the user should've been passed. - Don't use italics for 'Blocked since' text. - Use namelink template to display the user's name and homelink.
21 lines
908 B
Go HTML Template
21 lines
908 B
Go HTML Template
{{template "org/settings/layout_head" (dict "ctxData" . "pageClass" "organization settings blocked-users")}}
|
|
<div class="org-setting-content">
|
|
<div class="ui attached segment">
|
|
<form class="ui form ignore-dirty gt-df gt-fw gt-gap-3" action="{{$.Link}}/block" method="post">
|
|
{{.CsrfTokenHtml}}
|
|
<input type="hidden" name="uid" value="">
|
|
<div class="ui left">
|
|
<div id="search-user-box" class="ui search">
|
|
<div class="ui input">
|
|
<input class="prompt" name="uname" placeholder="{{.locale.Tr "repo.settings.search_user_placeholder"}}" autocomplete="off" required>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<button type="submit" class="ui red button">{{.locale.Tr "user.block"}}</button>
|
|
</form>
|
|
</div>
|
|
<div class="ui attached segment">
|
|
{{template "shared/blocked_users_list" dict "locale" .locale "BlockedUsers" .BlockedUsers}}
|
|
</div>
|
|
</div>
|
|
{{template "org/settings/layout_footer" .}}
|