settings: Remove id column from tables in stream and group settings.

Fixes part of #25483.
This commit is contained in:
Alexander Colloredo-Mansfeld 2023-06-06 15:23:51 -07:00 committed by Tim Abbott
parent 1fc59288b9
commit 437b2747b1
4 changed files with 0 additions and 4 deletions

View File

@ -8,7 +8,6 @@
{{else}}
<td class="hidden-subscriber-email">{{t "(hidden)"}}</td>
{{/if}}
<td>{{user_id}} </td>
<td>
<button {{#if disabled}} disabled="disabled"{{/if}} data-user-id="{{user_id}}" class="remove_potential_subscriber button small rounded white">{{t 'Remove' }}</button>
</td>

View File

@ -23,7 +23,6 @@
<thead class="table-sticky-headers">
<th data-sort="alphabetic" data-sort-prop="full_name">{{t "Name" }}</th>
<th data-sort="email">{{t "Email" }}</th>
<th data-sort="id">{{t "User ID" }}</th>
<th>{{t "Action" }}</th>
</thead>
<tbody id="create_stream_subscribers" class="subscriber_table"></tbody>

View File

@ -18,7 +18,6 @@
<thead class="table-sticky-headers">
<th data-sort="alphabetic" data-sort-prop="full_name">{{t "Name" }}</th>
<th data-sort="email">{{t "Email" }}</th>
<th data-sort="id">{{t "User ID" }}</th>
<th>{{t "Action" }}</th>
</thead>
<tbody id="create_user_group_members" class="member_table"></tbody>

View File

@ -22,7 +22,6 @@
<thead class="table-sticky-headers">
<th data-sort="alphabetic" data-sort-prop="full_name">{{t "Name" }}</th>
<th data-sort="email">{{t "Email" }}</th>
<th data-sort="id">{{t "User ID" }}</th>
<th class="actions" {{#unless can_edit}}style="display:none"{{/unless}}>{{t "Actions" }}</th>
</thead>
<tbody class="member_table"></tbody>