diff options
author | jeff <jeff> | 2009-10-05 00:49:34 +0000 |
---|---|---|
committer | jeff <jeff> | 2009-10-05 00:49:34 +0000 |
commit | 947c1f964f1304242f8a6ffabacccf040f1d505e (patch) | |
tree | ba3e3a042f40ac4b1b660e944973a2f1b29f80fa /httemplate | |
parent | 161eeea92a87e07d071a6c953f2dbd30daeb480c (diff) |
leading summary page invoices #RT5086
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/browse/pkg_category.html | 6 | ||||
-rw-r--r-- | httemplate/edit/pkg_category.html | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/httemplate/browse/pkg_category.html b/httemplate/browse/pkg_category.html index 20bf1a8df..e85c0dd9c 100644 --- a/httemplate/browse/pkg_category.html +++ b/httemplate/browse/pkg_category.html @@ -9,9 +9,9 @@ 'extra_sql' => 'ORDER BY categorynum', }, 'count_query' => $count_query, - 'header' => [ '#', 'Category' ], - 'fields' => [ 'categorynum', 'categoryname' ], - 'links' => [ $link, $link ], + 'header' => [ '#', 'Category', 'Weight' ], + 'fields' => [ 'categorynum', 'categoryname', 'weight' ], + 'links' => [ $link, $link, $link ], ) %> diff --git a/httemplate/edit/pkg_category.html b/httemplate/edit/pkg_category.html index fdc8da638..a07dc5842 100644 --- a/httemplate/edit/pkg_category.html +++ b/httemplate/edit/pkg_category.html @@ -3,11 +3,13 @@ 'table' => 'pkg_category', 'fields' => [ 'categoryname', + 'weight', { field=>'disabled', type=>'checkbox', value=>'Y', }, ], 'labels' => { 'categorynum' => 'Category number', 'categoryname' => 'Category name', + 'weight' => 'Weight', 'disabled' => 'Disable category', }, 'viewall_dir' => 'browse', |