"""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")