aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-09-03 15:38:03 -0500
committerFrederick Muriuki Muriithi2024-09-03 16:51:27 -0500
commit384d5205bf64cb769642800a82208369f1cd9a0e (patch)
treee6d45e71db8955445663c8aa070970fe779f4a74
parent2046919e5db5d1e7136f48641fe0adb701c145e4 (diff)
downloadgn-uploader-384d5205bf64cb769642800a82208369f1cd9a0e.tar.gz
Update navigation scaffolding.
Provide the navigation to the features we expect to provide with the system, even though, at this point, the features have not been implemented yet.
-rw-r--r--uploader/templates/base.html17
1 files changed, 14 insertions, 3 deletions
diff --git a/uploader/templates/base.html b/uploader/templates/base.html
index d9696d0..d0e2039 100644
--- a/uploader/templates/base.html
+++ b/uploader/templates/base.html
@@ -44,9 +44,20 @@
<aside id="nav-sidebar" class="container-fluid">
<ul class="nav flex-column">
<li><a href="/" >Home</a></li>
- <li><a href="{{url_for('species.list_species')}}" >Species</a></li>
- <li><a href="{{url_for('species.populations.index')}}">Populations</a></li>
- <li><a href="{{url_for('expression-data.index.index')}}" >Expression Data</a></li>
+ <li><a href="{{url_for('species.list_species')}}"
+ title="View and manage species information.">Species</a></li>
+ <li><a href="{{url_for('species.populations.index')}}"
+ title="View and manage species populations.">Populations</a></li>
+ <li><a href="#"
+ title="Upload population samples.">Samples</a></li>
+ <li><a href="{{url_for('expression-data.index.index')}}"
+ title="Upload expression data.">Expression Data</a></li>
+ <li><a href="#"
+ title="Upload phenotype data.">Phenotype Data</a></li>
+ <li><a href="#"
+ title="Upload individual data.">Individual Data</a></li>
+ <li><a href="#"
+ title="Upload RNA-Seq data.">RNA-Seq Data</a></li>
</ul>
</aside>