diff options
Diffstat (limited to 'app/php/components/UserSelection.tpl')
-rw-r--r-- | app/php/components/UserSelection.tpl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app/php/components/UserSelection.tpl b/app/php/components/UserSelection.tpl new file mode 100644 index 0000000..0532cef --- /dev/null +++ b/app/php/components/UserSelection.tpl @@ -0,0 +1,25 @@ +Selected calendars: +<br /> +<com:TRepeater ID="Categories" OnItemDataBound="categoryDataBind"> + <prop:ItemTemplate> + <%# $this->DataItem->Name %><br /> + <com:TRepeater ID="Calendars"> + <prop:ItemTemplate> + <com:TLinkButton + Text="[X]" + OnCommand="SourceTemplateControl.removeFromSelection"> + <prop:CommandParameter><%# $this->DataItem->ID %></prop:CommandParameter> + <prop:Visible><%# !$this->SourceTemplateControl->UserToDisplay->IsGuest %></prop:Visible> + </com:TLinkButton> + <%# $this->DataItem->Name %> + <com:THyperLink + Text="(www)" + Target="_blank"> + <prop:NavigateUrl><%# $this->DataItem->Website %></prop:NavigateUrl> + </com:THyperLink> + <br /> + </prop:ItemTemplate> + </com:TRepeater> + <br /> + </prop:ItemTemplate> +</com:TRepeater> |