mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
c56ba0c71e
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
15 lines
488 B
Handlebars
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>
|