def submit_trait_form():
    logger.info(request.url)
    species_and_groups = get_species_groups()
    return render_template("submit_trait.html",
                           species_and_groups=species_and_groups,
                           gn_server_url=GN_SERVER_URL,
                           version=GN_VERSION)
Beispiel #2
0
def submit_trait_form():
    species_and_groups = get_species_groups()
    return render_template(
        "submit_trait.html", **{
            'species_and_groups': species_and_groups,
            'gn_server_url': GN_SERVER_URL,
            'version': GN_VERSION
        })
Beispiel #3
0
def submit_trait_form():
    species_and_groups = get_species_groups()
    return render_template("submit_trait.html", **{'species_and_groups' : species_and_groups, 'gn_server_url' : GN_SERVER_URL, 'version' : GN_VERSION})