forked from enviPath/enviPy
Initial bayer app Show Pack Classification Adjusted docker compose to bayer specifics Adjusted Dockerfile for Bayer Adding secret flags to group, add secret pools to packages Adjusted View for Package creation Prep configs, added Package Create Modal wip More on PES wip wip Wip minor PW interactions API PES wip Make Select Widget reflect required make required generallay available Update UI if pathway mode is set to build Added ais circle adjustments Initial Zoom, fix AD Creation wip
41 lines
883 B
Python
41 lines
883 B
Python
import logging
|
|
|
|
from bayer import additional_information # noqa: F401
|
|
from epdb.template_registry import register_template
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
# PES Create
|
|
register_template(
|
|
"epdb.actions.collections.compound",
|
|
"actions/collections/new_pes.html",
|
|
)
|
|
register_template(
|
|
"modals.collections.compound",
|
|
"modals/collections/new_pes_modal.html",
|
|
)
|
|
register_template(
|
|
"epdb.actions.objects.pathway.add",
|
|
"actions/objects/pathway_add_pes.html",
|
|
)
|
|
register_template(
|
|
"epdb.modals.objects.pathway.add",
|
|
"modals/objects/add_pathway_pes_node_modal.html"
|
|
)
|
|
|
|
# PES Viz
|
|
register_template(
|
|
"epdb.objects.compound.viz",
|
|
"objects/compound_viz.html",
|
|
)
|
|
|
|
register_template(
|
|
"epdb.objects.compound_structure.viz",
|
|
"objects/compound_structure_viz.html",
|
|
)
|
|
|
|
register_template(
|
|
"epdb.objects.node.viz",
|
|
"objects/node_viz.html",
|
|
)
|