mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-23 21:20:41 +08:00
We are going to start making section landing pages for admin for each sidebar section. This lays the framework with routes and simple components that can be further refined by a designer, but I have taken the base CSS from AI which Kris made. The initial section landing items will be used in AI to replace the placeholders added in this commit https://github.com/discourse/discourse-ai/pull/813/commits/b8b3c614515b95ad642223a0ac24a37e6976b6bd
26 lines
No EOL
813 B
Handlebars
Vendored
26 lines
No EOL
813 B
Handlebars
Vendored
<AdminPageHeader
|
|
@titleLabel="admin.section_landing_pages.account.title"
|
|
@hideTabs={{true}}
|
|
>
|
|
<:breadcrumbs>
|
|
<DBreadcrumbsItem
|
|
@path="/admin/section/account"
|
|
@label={{i18n "admin.section_landing_pages.account.title"}}
|
|
/>
|
|
</:breadcrumbs>
|
|
</AdminPageHeader>
|
|
|
|
<AdminSectionLandingWrapper>
|
|
<AdminSectionLandingItem
|
|
@icon="box-archive"
|
|
@titleLabel="admin.section_landing_pages.account.backups.title"
|
|
@descriptionLabel="admin.section_landing_pages.account.backups.description"
|
|
@titleRoute="admin.backups"
|
|
/>
|
|
<AdminSectionLandingItem
|
|
@icon="gift"
|
|
@titleLabel="admin.section_landing_pages.account.whats_new.title"
|
|
@descriptionLabel="admin.section_landing_pages.account.whats_new.description"
|
|
@titleRoute="admin.whatsNew"
|
|
/>
|
|
</AdminSectionLandingWrapper> |