add titles

This commit is contained in:
Torsten Dittmann
2022-03-14 12:40:27 +01:00
parent b9b3f982db
commit 29de7ca860
14 changed files with 45 additions and 0 deletions
@@ -6,6 +6,9 @@
const project = $page.params.project;
</script>
<svelte:head>
<title>Appwrite - Database</title>
</svelte:head>
{#if $page.url.pathname === `/console/${project}/database/` || $page.url.pathname === `/console/${project}/database/usage/`}
<Back href={`/console/${project}`}>Home</Back>
<h1>Database</h1>
@@ -15,6 +15,10 @@
}
</script>
<svelte:head>
<title>Appwrite - {$collection?.name ?? 'Collection'}</title>
</svelte:head>
<Back href={`/console/${project}/database`}>Database</Back>
{#if $collection}
@@ -15,6 +15,10 @@
});
</script>
<svelte:head>
<title>Appwrite - Document</title>
</svelte:head>
<h1>Overview</h1>
<Card>
{#if $document}
@@ -16,6 +16,9 @@
const request = sdkForConsole.projects.listDomains(projectId);
</script>
<svelte:head>
<title>Appwrite - Domains</title>
</svelte:head>
<Back href={`/console/${projectId}`}>Home</Back>
<h1>API Keys</h1>
<Card>
@@ -6,6 +6,9 @@
const project = $page.params.project;
</script>
<svelte:head>
<title>Appwrite - Functions</title>
</svelte:head>
{#if $page.url.pathname === `/console/${project}/functions/`}
<Back href={`/console/${project}`}>Home</Back>
<h1>Functions</h1>
@@ -33,6 +33,10 @@
};
</script>
<svelte:head>
<title>Appwrite - Console</title>
</svelte:head>
{#if $project}
<h1>{$project.name}</h1>
<Card>
@@ -15,6 +15,9 @@
const request = sdkForConsole.projects.listKeys(projectId);
</script>
<svelte:head>
<title>Appwrite - API Keys</title>
</svelte:head>
<Back href={`/console/${projectId}`}>Home</Back>
<h1>API Keys</h1>
<Card>
@@ -6,6 +6,9 @@
const project = $page.params.project;
</script>
<svelte:head>
<title>Appwrite - Storage</title>
</svelte:head>
{#if $page.url.pathname === `/console/${project}/storage/` || $page.url.pathname === `/console/${project}/storage/usage/`}
<Back href={`/console/${project}`}>Home</Back>
<h1>Storage</h1>
@@ -15,6 +15,9 @@
}
</script>
<svelte:head>
<title>Appwrite - Bucket</title>
</svelte:head>
<Back href={`/console/${project}/storage`}>Storage</Back>
{#if $bucket}
<h1>{$bucket.name}</h1>
@@ -6,6 +6,9 @@
const project = $page.params.project;
</script>
<svelte:head>
<title>Appwrite - Users</title>
</svelte:head>
{#if $page.url.pathname.endsWith(`/users/`) || $page.url.pathname.endsWith(`/users/team/`) || $page.url.pathname.endsWith(`/users/usage/`) || $page.url.pathname.endsWith(`/users/settings/`)}
<Back href={`/console/${project}`}>Home</Back>
<h1>Users</h1>
@@ -6,6 +6,9 @@
const project = $page.params.project;
</script>
<svelte:head>
<title>Appwrite - Team</title>
</svelte:head>
<Back href={`/console/${project}/users`}>Users</Back>
<slot />
@@ -15,6 +15,9 @@
}
</script>
<svelte:head>
<title>Appwrite - User</title>
</svelte:head>
<Back href={`/console/${project}/users`}>Users</Back>
{#if $user}
<h1>{$user.name}</h1>
@@ -15,6 +15,9 @@
const request = sdkForConsole.projects.listWebhooks(projectId);
</script>
<svelte:head>
<title>Appwrite - Webhooks</title>
</svelte:head>
<Back href={`/console/${projectId}`}>Home</Back>
<h1>Webhooks</h1>
<Card>
+3
View File
@@ -36,6 +36,9 @@
};
</script>
<svelte:head>
<title>Appwrite - Console</title>
</svelte:head>
<h1>Your Organizations</h1>
<Button on:click={() => (addOrganization = true)}>Add Organization</Button>