[% l('Link Checker') %]
</a>
</li>
+ <li class="divider"></li>
+ <li>
+ <a href="./cat/catalog/manageAuthorities" target="_self">
+ <span class="glyphicon glyphicon-lock"></span>
+ [% l('Manage Authorities') %]
+ </a>
+ </li>
</ul>
</li>
resolve : resolver
});
+ $routeProvider.when('/cat/catalog/manageAuthorities', {
+ templateUrl: './cat/catalog/t_manageauthorities',
+ controller: 'ManageAuthoritiesCtrl',
+ resolve : resolver
+ });
+
$routeProvider.otherwise({redirectTo : '/cat/catalog/index'});
})
$scope.vandelay_url = $location.absUrl().replace(/\/staff.*/, '/vandelay/vandelay');
}])
+.controller('ManageAuthoritiesCtrl',
+ ['$scope','$location',
+function($scope , $location) {
+ $scope.manageauthorities_url = $location.absUrl().replace(/\/staff.*/, '/cat/authority/list');
+}])
+
.controller('BatchEditCtrl',
['$scope','$location','$routeParams',
function($scope , $location , $routeParams) {