summaryrefslogtreecommitdiff
path: root/demos/blog/protected/Portlets/CategoryPortlet.tpl
blob: dd5623ff8bea71957290e1ba0880cd5480add4bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<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->IsAdmin %> />
</h2>

<div class="portlet-content">
<com:TBulletedList
	ID="CategoryList"
	DisplayMode="HyperLink"
	DataTextField="Name"
	DataValueField="ID"
	EnableViewState="false"
	/>
</div><!-- end of portlet-content -->

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