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
30 lines
763 B
HTML
30 lines
763 B
HTML
{% extends "collections/paginated_base.html" %}
|
|
|
|
{% block page_title %}Pathways{% endblock %}
|
|
|
|
{% block action_button %}
|
|
{% if meta.can_edit or not meta.url_contains_package %}
|
|
<div class="flex items-center gap-2">
|
|
<a
|
|
class="btn btn-primary btn-sm"
|
|
href="{% if meta.current_package %}{{ meta.current_package.url }}/predict{% else %}/predict{% endif %}"
|
|
>
|
|
New Pathway
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock action_button %}
|
|
|
|
{% block description %}
|
|
<p>
|
|
A pathway displays the (predicted) biodegradation of a compound as graph.
|
|
</p>
|
|
<a
|
|
target="_blank"
|
|
href="https://wiki.envipath.org/index.php/pathways"
|
|
class="link link-primary"
|
|
>
|
|
Learn more >>
|
|
</a>
|
|
{% endblock description %}
|