blob: 2b4ed10c78c134175bcb64050fdff73563046ccf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
"""Views for the genotypes."""
from flask import Blueprint, render_template
from uploader.authorisation import require_login
genotypesbp = Blueprint("genotypes", __name__)
@genotypesbp.route("/genotypes")
@require_login
def index():
"""Direct entry-point for genotypes."""
return render_template("genotypes/index.html")
|