-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
a6f0459
commit a8ae267
Showing
3 changed files
with
11 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
--- | ||
import { cleanOrganism } from '../../../components/Navigation/cleanOrganism'; | ||
import BaseLayout from '../../../layouts/BaseLayout.astro'; | ||
import { routes } from '../../../routes'; | ||
const { organism } = Astro.params; | ||
const { organism } = cleanOrganism(Astro.params.organism); | ||
--- | ||
|
||
<BaseLayout title='Submit'> | ||
<h1 class='title'>Submission portal for {organism!}</h1> | ||
<h1 class='title'>Submission portal for {organism!.displayName}</h1> | ||
|
||
<div> | ||
<a href={routes.submitPage(organism!)}>Make a new submission</a><br /> | ||
<a href={routes.revisePage(organism!)}>Make a revision</a> | ||
<a href={routes.submitPage(organism!.key)}>Make a new submission</a><br /> | ||
<a href={routes.revisePage(organism!.key)}>Make a revision</a> | ||
<br /> | ||
<a href={routes.userSequenceReviewPage(organism!)}>My unreleased sequences</a> | ||
<a href={routes.userSequenceReviewPage(organism!.key)}>My unreleased sequences</a> | ||
<br /> | ||
<a href={routes.mySequencesWithoutGroup(organism!)}>My released sequences</a> | ||
<a href={routes.mySequencesWithoutGroup(organism!.key)}>My released sequences</a> | ||
</div> | ||
</BaseLayout> |
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