Ghost/ghost/admin/app/components/members-activity/table.hbs
James Morris fa224988e5 Updated styles for Activity to address latest feedback
refs https://github.com/TryGhost/Team/issues/1277

- changed breadcrumb for activity
- added back in three columns for activity when not filtered
- made adjustments to visual look and feel
2022-01-27 15:27:26 +00:00

17 lines
415 B
Handlebars

<table class="gh-list">
<thead>
<tr>
{{#unless @hideMemberColumn}}
<th>Member</th>
{{/unless}}
<th>Event</th>
<th>Time</th>
</tr>
</thead>
<tbody>
{{#each @events as |event|}}
<MembersActivity::TableRow @hideMemberColumn={{@hideMemberColumn}} @event={{event}} />
{{/each}}
</tbody>
</table>