Merge pull request #6006 from WoltLab/file-processor-can-adopt
[GitHub/WoltLab/WCF.git] / com.woltlab.wcf / templates / styleChooser.tpl
CommitLineData
38fc3e39
AE
1<ol class="containerList styleList{if $styleList|count > 4} doubleColumned{/if}">
2 {foreach from=$styleList item=style}
3 <li data-style-id="{@$style->styleID}">
dc21e2b7
AE
4 <div class="box128">
5 <span class="styleListPreviewImage">
2e572b29 6 <img src="{@$style->getPreviewImage()}" srcset="{@$style->getPreviewImage2x()} 2x" height="64" alt="">
38fc3e39
AE
7 </span>
8 <div class="details">
9 <div class="containerHeadline">
ae4dd172
AE
10 <h3>
11 {$style->styleName}
12 {if $style->styleID == $__wcf->getStyleHandler()->getStyle()->styleID}
13 <span class="jsTooltip" title="{lang}wcf.style.currentStyle{/lang}">
f2b75c02 14 {icon name='circle-check'}
ae4dd172
AE
15 </span>
16 {/if}
17 </h3>
83736ee3 18 </div>
c88bf2f3 19 {if $style->styleDescription}<small>{lang __optional=true}{@$style->styleDescription}{/lang}</small>{/if}
83736ee3 20 </div>
38fc3e39
AE
21 </div>
22 </li>
23 {/foreach}
24</ol>