Merge branch 'master' into next
[GitHub/WoltLab/WCF.git] / com.woltlab.wcf / templates / deletedContentList.tpl
1 {capture assign='pageTitle'}{lang}wcf.moderation.deletedContent.objectType.{@$objectType}{/lang}{/capture}
2
3 {capture assign='sidebarLeft'}
4 <section class="box">
5 <h2 class="boxTitle">{lang}wcf.moderation.deletedContent.objectTypes{/lang}</h2>
6
7 <div class="boxContent">
8 <nav>
9 <ul class="boxMenu">
10 {foreach from=$availableObjectTypes item=availableObjectType}
11 <li{if $objectType == $availableObjectType->objectType} class="active"{/if}><a class="boxMenuLink" href="{link controller='DeletedContentList'}objectType={@$availableObjectType->objectType}{/link}">{lang}wcf.moderation.deletedContent.objectType.{@$availableObjectType->objectType}{/lang}</a></li>
12 {/foreach}
13 </ul>
14 </nav>
15 </div>
16 </section>
17 {/capture}
18
19 {capture assign='contentHeader'}
20 <header class="contentHeader">
21 <div class="contentHeaderTitle">
22 <h1 class="contentTitle">{lang}wcf.moderation.deletedContent.{@$objectType}{/lang}</h1>
23 </div>
24
25 {hascontent}
26 <nav class="contentHeaderNavigation">
27 <ul>
28 {content}{event name='contentHeaderNavigation'}{/content}
29 </ul>
30 </nav>
31 {/hascontent}
32 </header>
33 {/capture}
34
35 {include file='header'}
36
37 {hascontent}
38 <div class="paginationTop">
39 {content}{pages print=true assign=pagesLinks controller='DeletedContentList' link="objectType=$objectType&pageNo=%d"}{/content}
40 </div>
41 {/hascontent}
42
43 {if $items}
44 {include file=$resultListTemplateName application=$resultListApplication}
45 {else}
46 <p class="info">{lang}wcf.global.noItems{/lang}</p>
47 {/if}
48
49 <footer class="contentFooter">
50 {hascontent}
51 <div class="paginationBottom">
52 {content}{@$pagesLinks}{/content}
53 </div>
54 {/hascontent}
55
56 {hascontent}
57 <nav class="contentFooterNavigation">
58 <ul>
59 {content}{event name='contentFooterNavigation'}{/content}
60 </ul>
61 </nav>
62 {/hascontent}
63 </footer>
64
65 {include file='footer'}