Skip to content
Snippets Groups Projects
Commit cbb1fd37 authored by Gabriel Engel's avatar Gabriel Engel Committed by GitHub
Browse files

Merge pull request #6804 from vlogic/5110

Missing useful fields in admin user list #5110
parents 9b4a7d2e bbe2a2e3
No related branches found
No related tags found
No related merge requests found
......@@ -268,8 +268,8 @@
"from": "generate-object-property@>=1.1.0 <2.0.0"
},
"getpass": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.6.tgz",
"version": "0.1.7",
"resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
"from": "getpass@>=0.1.1 <0.2.0",
"dependencies": {
"assert-plus": {
......
......@@ -29,6 +29,8 @@
<th class="content-background-color border-component-color" width="34%">{{_ "Name"}}</th>
<th class="content-background-color border-component-color" width="33%">{{_ "Username"}}</th>
<th class="content-background-color border-component-color" width="33%">{{_ "Email"}}</th>
<th class="content-background-color border-component-color" width="33%">{{_ "Roles"}}</th>
<th class="content-background-color border-component-color" width="33%">{{_ "Status"}}</th>
</tr>
</thead>
<tbody>
......@@ -42,10 +44,13 @@
<td class="border-component-color">{{name}}</td>
<td class="border-component-color">{{username}}</td>
<td class="border-component-color">{{emailAddress}}</td>
<td class="border-component-color">{{roles}}</td>
<td class="border-component-color">{{status}}</td>
</tr>
{{/each}}
</tbody>
</table>
{{#if hasMore}}
<button class="button secondary load-more {{isLoading}}">{{_ "Load_more"}}</button>
{{/if}}
......@@ -58,3 +63,4 @@
{{/with}}
</div>
</template>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment