summaryrefslogtreecommitdiff
path: root/demos/blog/protected/Portlets/CategoryPortlet.tpl
blob: acbd3bec6ddd70c4828aaa31f591df254eae60ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<div class="portlet">

<h2 class="portlet-title">
Categories
<com:THyperLink
	Text="[+]"
	Tooltip="Create a new category"
	NavigateUrl=<%= $this->Service->constructUrl('Posts.NewCategory') %>
	Visible=<%= $this->User->isInRole('admin') %> />
</h2>

<div class="portlet-content">
<ul>
<com:TRepeater ID="CategoryList" EnableViewState="false">
	<prop:ItemTemplate>
	<li>
	<a href="<%# $this->Service->constructUrl('Posts.ListPost',array('cat'=>$this->DataItem->ID)) %>"><%# $this->DataItem->Name . ' (' . $this->DataItem->PostCount . ')' %></a>
	</li>
	</prop:ItemTemplate>
</com:TRepeater>
</ul>
</div><!-- end of portlet-content -->

</div><!-- end of portlet -->