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