Ghost/ghost/admin/app/components/settings/history/no-events.hbs
Daniel Lockyer b226b03f09
Renamed Audit Log to History
refs https://github.com/TryGhost/Toolbox/issues/356

- this commit updates the route to `/settings/history` and moves all the
  files to their new name so we can avoid further cleanup down the line
2022-09-06 11:49:29 +01:00

13 lines
481 B
Handlebars

<div class="no-posts-box">
<div class="no-posts">
{{svg-jar "activity-placeholder" class="gh-members-placeholder"}}
{{#if @filter}}
<h4>No events match the current filter</h4>
<LinkTo @route="settings.history" @query={{reset-query-params "settings.history"}} class="gh-btn gh-btn-lg">
<span>Show all events</span>
</LinkTo>
{{else}}
<h4>No events yet</h4>
{{/if}}
</div>
</div>