Skip to content

Commit

Permalink
show DisplayName for admins
Browse files Browse the repository at this point in the history
  • Loading branch information
kkuepper committed Oct 1, 2024
1 parent ce983a7 commit c0b2aa0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion admin/app/views/pages/users.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ <h3>{{init.translation.page.users.adminUsers}}</h3>
<table class="sideways-header" style="width: 100%">
<tr class="sideways-header">
<th style="min-width: 200px">{{init.translation.page.contributors.name}}</th>
<th>Made admin</th>
<th>{{init.translation.page.users.albumManager}}</th>
<th>{{init.translation.page.users.trackManager}}</th>
<th>{{init.translation.page.users.contributorManager}}</th>
Expand All @@ -101,7 +102,10 @@ <h3>{{init.translation.page.users.adminUsers}}</h3>
</tr>
<tr ng-repeat="user in users">
<td>
{{user.id}}
{{user.display_name}} ({{user.id}})
</td>
<td>
{{user.made_admin_at | date:'dd.MM.yy'}}
</td>
<td>
<input type="checkbox" ng-model="user.perm.ROLE_ALBUM_MANAGER" ng-change="updateUser(user)">
Expand Down

0 comments on commit c0b2aa0

Please sign in to comment.