Add breadcrumb to accounts_approval page
This commit is contained in:
parent
ae1d743f15
commit
8254c6cb47
@ -4,6 +4,8 @@
|
|||||||
import Pagination from "../components/Pagination.svelte";
|
import Pagination from "../components/Pagination.svelte";
|
||||||
import Form from "../utils/Form.svelte";
|
import Form from "../utils/Form.svelte";
|
||||||
import Field from "../utils/Field.svelte";
|
import Field from "../utils/Field.svelte";
|
||||||
|
import Breadcrumb from "../components/Breadcrumb.svelte";
|
||||||
|
import {route} from "../../../common/Routing";
|
||||||
|
|
||||||
const accounts = $locals.accounts || [];
|
const accounts = $locals.accounts || [];
|
||||||
</script>
|
</script>
|
||||||
@ -15,6 +17,10 @@
|
|||||||
</style>
|
</style>
|
||||||
|
|
||||||
<BaseLayout title="{$locals.app.name} - Review accounts" h1={false}>
|
<BaseLayout title="{$locals.app.name} - Review accounts" h1={false}>
|
||||||
|
<Breadcrumb currentPageTitle="Accounts pending review" pages={[
|
||||||
|
{link: route('backend'), title:'Backend'},
|
||||||
|
]}/>
|
||||||
|
|
||||||
<h1>Accounts pending review</h1>
|
<h1>Accounts pending review</h1>
|
||||||
|
|
||||||
<Pagination pagination={$locals.pagination} routeName="accounts-approval" contextSize="3" />
|
<Pagination pagination={$locals.pagination} routeName="accounts-approval" contextSize="3" />
|
||||||
|
Loading…
Reference in New Issue
Block a user