86a0f103e9
- The extra column made sense logically but was causing too many issues - Going to try the single setence again but change visual style to be easier to parse - Making sure this works around the feature flag refs https://github.com/TryGhost/Team/issues/1851
17 lines
467 B
Handlebars
17 lines
467 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}} @hasMultipleNewsletters={{@hasMultipleNewsletters}} />
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|