Added a lot of functionality; Fixed a large number of bugs; Removed Bootstrap from the mix and replaced it with SimpleGrid and some choice bits from the bootstrap system; Pricing, Sales, and Product management all now function at basic levels.
This commit is contained in:
@@ -8,20 +8,6 @@ pri.route('/', {
|
||||
triggersEnter: [function(context, redirect) {redirect("/sales");}]
|
||||
});
|
||||
|
||||
pri.route('/menu', {
|
||||
name: 'Menu',
|
||||
action: function(params, queryParams) {
|
||||
require("/imports/ui/Menu.js");
|
||||
BlazeLayout.render('Body', {content: 'Menu'});
|
||||
}
|
||||
});
|
||||
pri.route('/admin', {
|
||||
name: 'UserManager',
|
||||
action: function(params, queryParams) {
|
||||
require("/imports/ui/UserManager.js");
|
||||
BlazeLayout.render('Body', {content: 'UserManager'});
|
||||
}
|
||||
});
|
||||
pri.route('/measures', {
|
||||
name: 'Measures',
|
||||
action: function(params, queryParams) {
|
||||
@@ -43,13 +29,6 @@ pri.route('/productTags', {
|
||||
BlazeLayout.render('Body', {content: 'ProductTags'});
|
||||
}
|
||||
});
|
||||
// pri.route('/subcategories', {
|
||||
// name: 'Items',
|
||||
// action: function(params, queryParams) {
|
||||
// require("/imports/ui/Subcategories.js");
|
||||
// BlazeLayout.render('Body', {content: 'Subcategories'});
|
||||
// }
|
||||
// });
|
||||
pri.route('/userManagement', {
|
||||
name: 'UserManagement',
|
||||
action: function(params, queryParams) {
|
||||
|
||||
Reference in New Issue
Block a user