diff options
author | Peter Amstutz | 2020-07-08 17:14:46 -0400 |
---|---|---|
committer | GitHub | 2020-07-08 17:14:46 -0400 |
commit | 6e0f9f18167377bac073d7715b89e7ddbf1fe72d (patch) | |
tree | 1b72a737b50e60346aefaf009ac2488d45c8abe0 /bh20simplewebuploader/templates/menu.html | |
parent | 6fa25708b46a590be82a6b84266c0a3f25a0d890 (diff) | |
parent | e821857e7a9403739f321feb7418d33d6bd8b2c7 (diff) | |
download | bh20-seq-resource-6e0f9f18167377bac073d7715b89e7ddbf1fe72d.tar.gz bh20-seq-resource-6e0f9f18167377bac073d7715b89e7ddbf1fe72d.tar.lz bh20-seq-resource-6e0f9f18167377bac073d7715b89e7ddbf1fe72d.zip |
Merge pull request #92 from arvados/upload-download-status
Split upload tab. Add upload status tab. Also a bunch of QC and uploader improvements.
Diffstat (limited to 'bh20simplewebuploader/templates/menu.html')
-rw-r--r-- | bh20simplewebuploader/templates/menu.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bh20simplewebuploader/templates/menu.html b/bh20simplewebuploader/templates/menu.html index 6f97e19..0f6003f 100644 --- a/bh20simplewebuploader/templates/menu.html +++ b/bh20simplewebuploader/templates/menu.html @@ -1,7 +1,9 @@ <section class="menu"> <div class="topnav" id="myTopnav"> - <a href="/" class="{{ 'active' if menu=='HOME' }}">COVID-19</a> + <a href="/" class="{{ 'active' if menu=='HOME' }}">PUBSEQ</a> <a href="/download" class="{{ 'active' if menu=='DOWNLOAD' }}">DOWNLOAD</a> + <a href="/upload" class="{{ 'active' if menu=='UPLOAD' }}">UPLOAD</a> + <a href="/status" class="{{ 'active' if menu=='STATUS' }}">STATUS</a> <a href="/demo" class="{{ 'active' if menu=='DEMO' }}">DEMO</a> <a href="/blog" class="{{ 'active' if menu=='BLOG' }}">BLOG</a> <a href="/about" class="{{ 'active' if menu=='ABOUT' }}">ABOUT</a> |