Ghost/ghost/admin/app/components/gh-event-timeline.hbs
Fabien 'egg' O'Carroll c56ba0c71e Added initial event timeline to dashboard (#1840)
refs https://github.com/TryGhost/Team/issues/469

* Updated stats service to fetch event timeline
* Updated dashboard controller to load events
* Added currency utils
* Added GhEventTimeline component
* Updated dashboard to render GhEventTimeline
2021-02-18 14:17:10 +00:00

15 lines
488 B
Handlebars

<div class="gh-event-timeline">
<ul class="gh-dashboard-activity-feed">
{{#each this.parsedEvents as |event|}}
<li>
<div class="activity">
<div>
<span class="member">{{event.subject}}</span> {{event.action}} {{event.object}} <span class="highlight">{{event.info}}</span>
</div>
</div>
<span class="time">{{event.timestamp}}</span>
</li>
{{/each}}
</ul>
</div>