5 lines
262 B
HTML
5 lines
262 B
HTML
<div class="btn-group btn-group-sm">
|
|
<button ng-repeat="role in roles"
|
|
type="button" class="btn" ng-click="setRole(role.id)"
|
|
ng-class="(currentRole == role.id) ? ('active btn-' + role.kind) : 'btn-default'">{{ role.title }}</button>
|
|
</div>
|