|
|
@@ -36,6 +36,7 @@ print_filters_submenu($page_url);
|
|
|
<td><b>Id</b></td>
|
|
|
<td width=200><b><?php echo WEB_cell_name; ?></b></td>
|
|
|
<td width=200><b><?php echo WEB_cell_comment; ?></b></td>
|
|
|
+ <td><input type="submit" onclick="return confirm('<?php echo WEB_msg_delete; ?>?')" name="remove" value="<?php echo WEB_btn_delete; ?>"></td>
|
|
|
</tr>
|
|
|
<?php
|
|
|
$groups = get_records_sql($db_link,'SELECT * FROM Group_list ORDER BY id');
|
|
|
@@ -45,13 +46,13 @@ foreach ($groups as $row) {
|
|
|
print "<td class=\"data\" ><input type=\"hidden\" name=\"".$row["id"]."\" value=".$row["id"].">".$row["id"]."</td>\n";
|
|
|
print "<td class=\"data\"><a href=editgroup.php?id=".$row["id"].">" . $row["group_name"] . "</a></td>\n";
|
|
|
print "<td class=\"data\">" . $row["comment"] . "</td>\n";
|
|
|
+ print "<td></td></tr>";
|
|
|
}
|
|
|
?>
|
|
|
</table>
|
|
|
<div>
|
|
|
<?php echo WEB_cell_name; ?><input type=text name=newgroup value="Unknown">
|
|
|
<input type="submit" name="create" value="<?php echo WEB_btn_add; ?>">
|
|
|
-<input type="submit" onclick="return confirm('<?php echo WEB_msg_delete; ?>?')" name="remove" value="<?php echo WEB_btn_delete; ?>">
|
|
|
</div>
|
|
|
</form>
|
|
|
<?php
|