Merge commit '7fca4c55950f6cd4671c5a2f220b7adfe4239c0d'
[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='sidebar'}
12 <fieldset>
13 <legend>{lang}wcf.moderation.deletedContent.objectTypes{/lang}</legend>
14
15 <nav>
16 <ul>
17 {foreach from=$availableObjectTypes item=availableObjectType}
18 <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>
19 {/foreach}
20 </ul>
21 </nav>
22 </fieldset>
23 {/capture}
24
25 {include file='header' sidebarOrientation='left'}
26
27 <header class="boxHeadline">
28 <h1>{lang}wcf.moderation.deletedContent.{@$objectType}{/lang}</h1>
29 </header>
30
31 {include file='userNotice'}
32
33 <div class="contentNavigation">
34 {pages print=true assign=pagesLinks controller='DeletedContentList' link="objectType=$objectType&pageNo=%d"}
35
36 {hascontent}
37 <nav>
38 <ul>
39 {content}
40 {event name='contentNavigationButtonsTop'}
41 {/content}
42 </ul>
43 </nav>
44 {/hascontent}
45 </div>
46
47 {if $items}
48 {include file=$resultListTemplateName application=$resultListApplication}
49 {else}
50 <p class="info">{lang}wcf.global.noItems{/lang}</p>
51 {/if}
52
53 <div class="contentNavigation">
54 {@$pagesLinks}
55
56 {hascontent}
57 <nav>
58 <ul>
59 {content}
60 {event name='contentNavigationButtonsBottom'}
61 {/content}
62 </ul>
63 </nav>
64 {/hascontent}
65
66 <nav class="jsClipboardEditor" data-types="[ '{@$objectType}' ]"></nav>
67 </div>
68
69 {include file='footer'}
70
71 </body>
72 </html>