mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
Added a bunch of stuff
This commit is contained in:
@ -66,10 +66,6 @@ angular.module('biomed', ['biomed.filters', 'biomed.services', 'biomed.directive
|
||||
controller: "DeviceTypeIndexCtrl",
|
||||
reloadOnSearch: false
|
||||
})
|
||||
.when('/devices/add', {
|
||||
templateUrl: '/partials/devices/add.html',
|
||||
controller: "DeviceAddCtrl"
|
||||
})
|
||||
.when('/deviceTypes/add', {
|
||||
templateUrl: '/partials/deviceTypes/add.html',
|
||||
controller: "DeviceTypeAddCtrl"
|
||||
@ -78,6 +74,35 @@ angular.module('biomed', ['biomed.filters', 'biomed.services', 'biomed.directive
|
||||
templateUrl: '/partials/deviceTypes/edit.html',
|
||||
controller: "DeviceTypeEditCtrl"
|
||||
})
|
||||
.when('/devices/add', {
|
||||
templateUrl: '/partials/devices/add.html',
|
||||
controller: "DeviceAddCtrl"
|
||||
})
|
||||
.when('/devices/:id', {
|
||||
templateUrl: '/partials/devices/edit.html',
|
||||
controller: "DeviceEditCtrl"
|
||||
})
|
||||
.when('/checkLists', {
|
||||
templateUrl: '/partials/checkLists/index.html',
|
||||
controller: "CheckListIndexCtrl",
|
||||
reloadOnSearch: false
|
||||
})
|
||||
.when('/checkLists/add', {
|
||||
templateUrl: '/partials/checkLists/add.html',
|
||||
controller: "CheckListAddCtrl"
|
||||
})
|
||||
.when('/checkLists/:id', {
|
||||
templateUrl: '/partials/checkLists/add.html',
|
||||
controller: "CheckListEditCtrl"
|
||||
})
|
||||
.when('/testRuns/add', {
|
||||
templateUrl: '/partials/testRuns/add.html',
|
||||
controller: "TestRunAddCtrl"
|
||||
})
|
||||
.when('/testRuns/:id', {
|
||||
templateUrl: '/partials/testRuns/view.html',
|
||||
controller: "TestRunViewCtrl"
|
||||
})
|
||||
.when('/accounting', {
|
||||
templateUrl: '/partials/accounting/index.html',
|
||||
controller: "AccountingIndexCtrl",
|
||||
|
Reference in New Issue
Block a user