diff options
Diffstat (limited to 'uploader')
-rw-r--r-- | uploader/species/views.py | 3 | ||||
-rw-r--r-- | uploader/templates/index.html | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/uploader/species/views.py b/uploader/species/views.py index af66de3..3a76494 100644 --- a/uploader/species/views.py +++ b/uploader/species/views.py @@ -7,6 +7,7 @@ from flask import (flash, current_app as app, render_template as flask_render_template) +from uploader.authorisation import require_login from uploader.db_utils import database_connection from .models import all_species, save_species, species_by_id @@ -28,12 +29,14 @@ def list_species(): allspecies=all_species(conn)) @speciesbp.route("/<int:species_id>", methods=["GET"]) +@require_login def view_species(species_id: int): """View details of a particular species and menus to act upon it.""" with database_connection(app.config["SQL_URI"]) as conn: return species_by_id(conn, species_id) @speciesbp.route("/create", methods=["GET", "POST"]) +@require_login def create_species(): """Create a new species.""" # We can use uniprot's API to fetch the details with something like diff --git a/uploader/templates/index.html b/uploader/templates/index.html index 75d7dec..e3f5af4 100644 --- a/uploader/templates/index.html +++ b/uploader/templates/index.html @@ -14,6 +14,7 @@ {%block contents%} <div class="row"> + {{flash_all_messages()}} <div class="explainer"> <p>Welcome to the <strong>GeneNetwork Data Quality Control and Upload System</strong>. This system is provided to help in uploading your data onto GeneNetwork where you can do analysis on it.</p> |