-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
146 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<template> | ||
<DefaultLayout> | ||
<SectionLayout> | ||
<h1 | ||
class="font-ham mb-4 text-3xl font-extrabold text-gray-900 dark:text-white/80 md:text-5xl lg:text-6xl" | ||
> | ||
<span | ||
class="text-transparent bg-clip-text bg-gradient-to-r from-gg-2 from-10% via-gg-1 via-40% via-gb-2 via-60% to-gb-4 to-100" | ||
> | ||
Project | ||
</span> | ||
creation | ||
</h1> | ||
<p class="text-lg font-normal text-gray-500 dark:text-surface-400 lg:text-xl"> | ||
Fill the template and request to create a new project | ||
</p> | ||
<Divider /> | ||
<p class="indent-4 text-lg leading-relaxed mt-2 mb-4 dark:text-white/80"> | ||
To upload data to an existing project, use the | ||
<RouterLink :to="{ name: 'upload' }" class="text-primary-500 hover:text-secondary-500"> | ||
dataset upload form | ||
<i class="pi pi-arrow-up-right -ml-4 text-sm" /> | ||
</RouterLink> | ||
</p> | ||
</SectionLayout> | ||
</DefaultLayout> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<template> | ||
<DefaultLayout> | ||
<SectionLayout> | ||
<h1 | ||
class="font-ham mb-4 text-3xl font-extrabold text-gray-900 dark:text-white/80 md:text-5xl lg:text-6xl" | ||
> | ||
<span | ||
class="text-transparent bg-clip-text bg-gradient-to-r from-gg-2 from-10% via-gg-1 via-40% via-gb-2 via-60% to-gb-4 to-100" | ||
> | ||
Upload | ||
</span> | ||
dataset | ||
</h1> | ||
<p class="text-lg font-normal text-gray-500 dark:text-surface-400 lg:text-xl"> | ||
Upload a dataset to the database | ||
</p> | ||
<Divider /> | ||
<p class="indent-4 text-lg leading-relaxed mt-2 mb-4 dark:text-white/80"> | ||
During upload you need to select the project to which your dataset belongs. If there is no | ||
project yet for this dataset, create one with the | ||
<RouterLink :to="{ name: 'project' }" class="text-primary-500 hover:text-secondary-500"> | ||
project template request | ||
<i class="pi pi-arrow-up-right -ml-4 text-sm" /> | ||
</RouterLink> | ||
</p> | ||
</SectionLayout> | ||
</DefaultLayout> | ||
</template> |