rhymix/modules/autoinstall/tpl/category.html
ChanMyeong 8fcd53ae12 Auto install UI updated.
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8927 201d5d3c-b55e-5fd7-737f-ddc643e51545
2011-08-29 08:06:03 +00:00

18 lines
871 B
HTML

<div class="easyNav">
<div loop="$categories => $category" class="category">
<block cond="$category->depth == 0">
<h2>{$category->title}</h2>
<ul>
<li loop="$category->children => $children">
<block cond="$children->category_srl == $category_srl"><strong>{$children->title}</strong>({$children->nPackages})</block>
<block cond="$children->category_srl != $category_srl"><a href="{getUrl('','module','admin','act','dispAutoinstallAdminIndex','category_srl',$children->category_srl,'childrenList','')}">{$children->title}</a>({$children->nPackages})</block>
</li>
</ul>
</block>
</div>
<p class="filter">
<a href="{getUrl('', 'module', 'admin', 'act', 'dispAutoinstallAdminIndex')}">All({$tCount})</a>
|
<a href="{getUrl('', 'module', 'admin', 'act', 'dispAutoinstallAdminInstalledPackages')}">Installed({$iCount})</a>
</p>
</div>