Файл: EasyHost v2.0/system/htdocs/admin/categories/default.html
Строк: 35
<?php
<html>
<head>
<link rel="stylesheet" type="text/css" href="<{system.htdocs}>styles/<{system.color}>/default.css" />
<title>MAIN</title>
</head>
<body marginwidth="10" marginheight="10" topmargin="10" leftmargin="10" rightmargin="10" bottommargin="10" bgcolor="<{system.color('body_bg')}>" style="background: #ffffff url('<{system.htdocs}>images/bg.jpg') no-repeat">
<table border="0" cellspacing="10" cellpadding="0">
<tr valign="top">
<td width="75"> </td>
<td>
<div><a href="<{system.url('create')}>"><b>Create a Category</b></a></div>
<div>Insert a new Category into the Database.</div>
</td>
</tr>
<tr>
<td width="75"> </td>
<td><b>Select a category to manage...</b></td>
</tr>
<tr>
<td width="75"> </td>
<td>
<form method="get" name="form">
<input type="hidden" name="command" value="admin/categories/category" />
<select name="id" onchange="form.submit()">
<option value="0"> - Select One - </option>
<%categories%>
<option value="<{category.id}>"><{category.path}></option>
<%end%>
</select>
</form>
</td>
</tr>
</table>
</body>
</html>
?>