<%include Pages.header %>
<%include Pages.menu_style %>
<%include Pages.start %>
<com:TForm ID="Form_accounts">
<com:TLinkButton ID="action" Text="#$this->Page->action_button" OnCommand="onAction" CommandName="#$this->Page->event_name" onclick="if(!confirm('Are you sure?')) return false;" />
| <com:TLinkButton ID="refresh" Text="Refresh" OnClick="onRefresh" />
<br /><br />
<com:TTable ID="table" AlternateRowClass="row2" RowClass="row1" border="0" cellspacing="0" cellpadding="2" width="92%" class="grid">
<com:TRepeater ID="tableData">
<prop:HeaderTemplate>
<com:TTableCell class="th"></com:TTableCell>
<com:TTableCell align="left" class="th">ID</com:TTableCell>
<com:TTableCell align="left" class="th">Name</com:TTableCell>
<com:TTableCell align="left" class="th">Url</com:TTableCell>
<com:TTableNewRow AddRow="1" />
</prop:HeaderTemplate>
<prop:ItemTemplate>
<com:TTableCell><com:TCheckBox ID="account" /></com:TTableCell>
<com:TTableCell><%= $this->Parent->Data['account_id'] %></com:TTableCell>
<com:TTableCell><%= $this->Parent->Data['account_name'] %></com:TTableCell>
<com:TTableCell><%= $this->Parent->Data['account_url'] %></com:TTableCell>
<com:TTableNewRow AddRow="1" />
</prop:ItemTemplate>
</com:TRepeater>
</com:TTable>
<br />
<div align="center">
<com:TPagination ID="navigation" Start="1" />
<br />
<com:TLinkButton ID="show" Text="Show All" />
</div>
</com:TForm>
<%include Pages.end %>
<%include Pages.footer %>