Add user role privilege table

Created a directive to handle display of user privilege roles
on the local user management page.

Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com>
Change-Id: I83caea33356012752c7a67301fa2a372f0c28620
diff --git a/app/common/components/table/table.html b/app/common/components/table/table.html
index b40c346..ceedd91 100644
--- a/app/common/components/table/table.html
+++ b/app/common/components/table/table.html
@@ -1,4 +1,4 @@
-<table class="bmc-table">
+<table class="bmc-table {{$ctrl.size}}">
   <thead>
     <!-- Header row -->
     <tr>
@@ -14,9 +14,9 @@
         ng-repeat="row in $ctrl.model.data"
         class="bmc-table__row">
       <!-- Row item -->
-      <td ng-repeat="item in row.uiData"
+      <td ng-repeat="item in row.uiData track by $index"
           class="bmc-table__cell">
-        {{item}}
+          <ng-bind-html ng-bind-html="item"></ng-bind-html>
       </td>
       <!-- Row Actions -->
       <td ng-if="$ctrl.rowActionsEnabled"