diff options
| author | Frederick Muriuki Muriithi | 2025-12-29 11:35:17 -0600 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2025-12-29 11:35:17 -0600 |
| commit | ed59dc5180dcd84d7d3c9e5eda890ea2545242e3 (patch) | |
| tree | 8d8af2730df44d4ad7d8002a21352c5b2bc1c0ae /uploader/population | |
| parent | 8b2737c391834e8245c42e13b84c67ed2a0d942b (diff) | |
| download | gn-uploader-ed59dc5180dcd84d7d3c9e5eda890ea2545242e3.tar.gz | |
Populations: Move feature to new UI templates.
Diffstat (limited to 'uploader/population')
| -rw-r--r-- | uploader/population/views.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/uploader/population/views.py b/uploader/population/views.py index caee55b..795ce81 100644 --- a/uploader/population/views.py +++ b/uploader/population/views.py @@ -11,8 +11,6 @@ from flask import (flash, Blueprint, current_app as app) -from uploader.sui import sui_template - from uploader.samples.views import samplesbp from uploader.flask_extensions import url_for from uploader.oauth2.client import oauth2_post @@ -244,5 +242,4 @@ def view_population(species_id: int, population_id: int): dataset_phenotypes(conn, population["Id"], _dataset["Id"])) } - return render_template(sui_template("populations/view-population.html"), - **_kwargs) + return render_template("populations/view-population.html", **_kwargs) |
