Add the new variable `FileProcessorFormField::$bigPreview` with getter and setter.
[GitHub/WoltLab/WCF.git] / com.woltlab.wcf / templates / ignoredUsers.tpl
CommitLineData
320f4a6d
MW
1{include file='userMenuSidebar'}
2
bd672549
AE
3{capture assign='contentTitleBadge'}<span class="badge">{#$items}</span>{/capture}
4
9ba4fe51
MW
5{capture assign='contentInteractionPagination'}
6 {pages print=true assign=pagesLinks controller='IgnoredUsers' link="pageNo=%d"}
7{/capture}
320f4a6d 8
9ba4fe51 9{include file='header' __sidebarLeftHasMenu=true}
320f4a6d
MW
10
11{if $objects|count}
95961bdf 12 <div class="section sectionContainerList">
08a89f3e 13 <ol class="containerList userList jsReloadPageWhenEmpty">
320f4a6d 14 {foreach from=$objects item=user}
08a89f3e 15 <li class="jsIgnoredUser" data-object-id="{@$user->getObjectID()}">
320f4a6d 16 <div class="box48">
2ee5392c 17 {user object=$user type='avatar48' ariaHidden='true' tabindex='-1'}
72c85f64 18
320f4a6d
MW
19 <div class="details userInformation">
20 {include file='userInformationHeadline'}
21
22 <nav class="jsMobileNavigation buttonGroupNavigation">
b925ad8f 23 <ul class="buttonList iconList jsOnly">
08a89f3e
MS
24 <li>
25 <a class="pointer jsTooltip jsEditIgnoreButton" title="{lang}wcf.global.button.edit{/lang}">
ab43711a 26 {icon name='pencil'}
08a89f3e
MS
27 <span class="invisible">{lang}wcf.global.button.edit{/lang}</span>
28 </a>
29 </li>
320f4a6d
MW
30 {event name='userButtons'}
31 </ul>
32 </nav>
33
38735374
MW
34 <dl class="plain inlineDataList small">
35 {include file='userInformationStatistics'}
36 </dl>
320f4a6d
MW
37 </div>
38 </div>
39 </li>
40 {/foreach}
41 </ol>
42 </div>
43
e7b063d6
AE
44 <footer class="contentFooter">
45 {hascontent}
46 <div class="paginationBottom">
47 {content}{@$pagesLinks}{/content}
48 </div>
49 {/hascontent}
320f4a6d
MW
50
51 {hascontent}
e7b063d6 52 <nav class="contentFooterNavigation">
320f4a6d 53 <ul>
e7b063d6 54 {content}{event name='contentFooterNavigation'}{/content}
320f4a6d
MW
55 </ul>
56 </nav>
57 {/hascontent}
e7b063d6 58 </footer>
08a89f3e
MS
59
60 <script data-relocate="true">
61 require(['Language', 'WoltLabSuite/Core/Ui/User/Ignore/List'], (Language, { UiUserIgnoreList }) => {
62 Language.addObject({
63 'wcf.user.button.ignore': '{jslang}wcf.user.button.ignore{/jslang}',
64 });
65
66 new UiUserIgnoreList();
67 });
68 </script>
320f4a6d 69{else}
a14d7068 70 <woltlab-core-notice type="info">{lang}wcf.user.ignoredUsers.noUsers{/lang}</woltlab-core-notice>
320f4a6d
MW
71{/if}
72
3e93caf9 73{include file='footer'}