<ul class="dropdown-menu">
<li>
<a href="./circ/patron/{{patron().id()}}/credentials">
- <span class="glyphicon glyphicon-ok"></span>
[% l('Test Password') %]
</a>
</li>
+ <li>
+ <a href="./circ/patron/{{patron().id()}}/alerts">
+ [% l('Display Alert and Messages') %]
+ </a>
+ </li>
</ul>
</li>
<li ng-class="{active : tab == 'search'}" class="pull-right">
.controller('PatronAlertsCtrl',
['$scope','$routeParams','$location','egCore','patronSvc',
function($scope, $routeParams , $location , egCore , patronSvc) {
- patronSvc.alertsShown = true;
// called with a patron, pre-populate the form args
$scope.initTab('other', $routeParams.id).then(
function() {
+ patronSvc.alertsShown = true;
}
);
}])