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