Преглед изворни кода

added more info about the teams

Patrick O'Carroll пре 7 година
родитељ
комит
a94406ac53
1 измењених фајлова са 6 додато и 0 уклоњено
  1. 6 0
      public/app/features/org/partials/profile.html

+ 6 - 0
public/app/features/org/partials/profile.html

@@ -31,12 +31,18 @@
     <table class="filter-table form-inline">
       <thead>
         <tr>
+          <th></th>
           <th>Name</th>
+          <th>Email</th>
+          <th>Members</th>
         </tr>
       </thead>
       <tbody>
         <tr ng-repeat="team in ctrl.teams">
+          <td class="width-4 text-center"><img class="filter-table__avatar" src={{team.avatarUrl}}></td>
           <td>{{team.name}}</td>
+          <td>{{team.email}}</td>
+          <td>{{team.memberCount}}</td>
         </tr>
       </tbody>
     </table>