mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
a06003e7b5
refs: https://github.com/TryGhost/Team/issues/1531 - broke apart the combined chart - added back in the paid mix chart - separated out the mini charts into separate components - made top chart work with total, paid and free - added in an overview section back at the top for total, paid, free - made metric labels and values larger and easier to parse Co-authored-by: Simon Backx <simon@ghost.org>
26 lines
852 B
Handlebars
26 lines
852 B
Handlebars
<section class="gh-dashboard5-layout" {{did-insert this.onInsert}}>
|
|
{{#if this.isLoading }}
|
|
<GhLoadingSpinner />
|
|
{{else}}
|
|
{{#if this.areMembersEnabled}}
|
|
{{#if this.hasPaidTiers}}
|
|
<Dashboard::V5::Charts::Overview />
|
|
{{/if}}
|
|
<Dashboard::V5::Charts::Anchor />
|
|
{{/if}}
|
|
|
|
{{#if this.areNewslettersEnabled}}
|
|
<Dashboard::V5::Charts::Engagement />
|
|
{{/if}}
|
|
|
|
<Dashboard::V5::Charts::RecentPosts />
|
|
<Dashboard::V5::Charts::RecentActivity />
|
|
<Dashboard::V5::Resources::Help />
|
|
|
|
{{!-- <Dashboard::V5::Resources::WhatsNew /> --}}
|
|
{{!-- <Dashboard::V5::Resources::LatestNewsletters /> --}}
|
|
{{!-- <Dashboard::V5::Resources::StaffPicks /> --}}
|
|
{{/if}}
|
|
</section>
|
|
|
|
<Dashboard::V5::Prototype::ControlPanel /> |