1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

Fixing breadcrumb issue w/ inventories -> scan job templates

when editing/adding a scan job template, the 'Job Template' breadcrumb did not have a route associated with it.
This commit is contained in:
Jared Tabor 2015-06-08 11:02:14 -04:00
parent cf04337712
commit c20fc09243

View File

@ -440,6 +440,10 @@ var tower = angular.module('Tower', [
}
}).
when('/inventories/:inventory_id/job_templates/', {
redirectTo: '/inventories/:inventory_id'
}).
when('/inventories/:inventory_id/job_templates/:template_id', {
name: 'inventoryJobTemplateEdit',
templateUrl: urlPrefix + 'partials/job_templates.html',