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
47 lines
1.2 KiB
HTML
47 lines
1.2 KiB
HTML
{% extends "collections/paginated_base.html" %}
|
|
{% load envipytags %}
|
|
|
|
{% block page_title %}Compounds{% endblock %}
|
|
|
|
{% block action_button %}
|
|
<div class="flex items-center gap-2">
|
|
{% if meta.can_edit or not meta.url_contains_package %}
|
|
<button
|
|
type="button"
|
|
class="btn btn-primary btn-sm"
|
|
onclick="document.getElementById('new_compound_modal').showModal(); return false;"
|
|
>
|
|
New Compound
|
|
</button>
|
|
{% endif %}
|
|
{% epdb_slot_templates "epdb.actions.collections.compound" as action_button_templates %}
|
|
|
|
{% for tpl in action_button_templates %}
|
|
{% include tpl %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock action_button %}
|
|
|
|
{% block action_modals %}
|
|
{% include "modals/collections/new_compound_modal.html" %}
|
|
{% epdb_slot_templates "modals.collections.compound" as action_modals_templates %}
|
|
|
|
{% for tpl in action_modals_templates %}
|
|
{% include tpl %}
|
|
{% endfor %}
|
|
{% endblock action_modals %}
|
|
|
|
{% block description %}
|
|
<p>
|
|
A compound stores the structure of a molecule and can include
|
|
meta-information.
|
|
</p>
|
|
<a
|
|
target="_blank"
|
|
href="https://wiki.envipath.org/index.php/compounds"
|
|
class="link link-primary"
|
|
>
|
|
Learn more >>
|
|
</a>
|
|
{% endblock description %}
|