Add the new variable `FileProcessorFormField::$bigPreview` with getter and setter.
[GitHub/WoltLab/WCF.git] / com.woltlab.wcf / templates / following.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='Following' 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">
13a3e90a 13 <ol class="containerList userList jsReloadPageWhenEmpty jsObjectActionContainer" data-object-action-class-name="wcf\data\user\follow\UserFollowAction">
320f4a6d 14 {foreach from=$objects item=user}
13a3e90a 15 <li class="jsFollowing jsObjectActionObject" 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">
ab43711a 24 <li><a class="pointer jsTooltip jsObjectAction" data-object-action="delete" title="{lang}wcf.user.button.unfollow{/lang}" data-object-id="{@$user->followID}">{icon name='xmark'} <span class="invisible">{lang}wcf.user.button.unfollow{/lang}</span></a></li>
320f4a6d
MW
25 {event name='userButtons'}
26 </ul>
27 </nav>
28
38735374
MW
29 <dl class="plain inlineDataList small">
30 {include file='userInformationStatistics'}
31 </dl>
320f4a6d
MW
32 </div>
33 </div>
34 </li>
35 {/foreach}
36 </ol>
37 </div>
38
e7b063d6
AE
39 <footer class="contentFooter">
40 {hascontent}
41 <div class="paginationBottom">
42 {content}{@$pagesLinks}{/content}
43 </div>
44 {/hascontent}
320f4a6d
MW
45
46 {hascontent}
e7b063d6 47 <nav class="contentFooterNavigation">
320f4a6d 48 <ul>
e7b063d6 49 {content}{event name='contentFooterNavigation'}{/content}
320f4a6d
MW
50 </ul>
51 </nav>
52 {/hascontent}
e7b063d6 53 </footer>
320f4a6d 54{else}
a14d7068 55 <woltlab-core-notice type="info">{lang}wcf.user.following.noUsers{/lang}</woltlab-core-notice>
320f4a6d
MW
56{/if}
57
3e93caf9 58{include file='footer'}