<% if (security.user.is_admin || security.user.can_edit_reports) { %>
add new report
<% } %>
<%
if (ds.Tables[0].Rows.Count > 0)
{
SortableHtmlTable.create_from_dataset(
Response, ds, "", "", false);
}
else
{
Response.Write ("No reports in the database.");
}
%>
<% Response.Write(Application["custom_footer"]); %>