Skip to content

Commit

Permalink
Merge pull request #1990 from botraunak/asterik-selected-roles
Browse files Browse the repository at this point in the history
style fix #1958, Selected Roles Asteriks
  • Loading branch information
mbj36 committed Mar 8, 2017
2 parents 778eeb2 + e2da594 commit 7f267dc
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions app/views/administration/createuser.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,14 +144,15 @@
</div>
<div class="col-sm-1 col-md-1 paddedtop25px">
<button type="button" class="btn btn-primary" data-ng-click="addRole()"><i
class="icon-double-angle-right"></i></button>
class="fa fa-angle-double-right"></i></button>
<br/>
<button type="button" class="btn btn-primary" data-ng-click="removeRole()"><i
class="icon-double-angle-left"></i></button>
class="fa fa-angle-double-left"></i></button>
</div>
<div class="col-sm-3 col-md-3">
<label class="control-label col-sm-9">{{ 'label.input.selectedroles' | translate}}</label>
<select id="roles" ng-model="selected" name="role" class="form-control multiselectmin" multiple>
<label class="control-label col-sm-9">{{ 'label.input.selectedroles' | translate}}<span
class="required">*</span></label>
<select id="roles" name="roles" ng-model="selected" name="role" class="form-control multiselectmin" multiple>
<option ng-repeat="availablerole in selectedRoles" value="{{availablerole.id}}">
{{availablerole.name}}
</option>
Expand Down

0 comments on commit 7f267dc

Please sign in to comment.