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
38 lines
1.0 KiB
HTML
38 lines
1.0 KiB
HTML
{% extends "collections/paginated_base.html" %}
|
|
{% load static %}
|
|
|
|
{% block page_title %}Scenarios{% endblock %}
|
|
|
|
{% block action_modals %}
|
|
{# Load required scripts before modal #}
|
|
<script src="{% static 'js/alpine/components/widgets.js' %}"></script>
|
|
<script src="{% static 'js/api/additional-information.js' %}"></script>
|
|
{% include "modals/collections/new_scenario_modal.html" %}
|
|
{% endblock action_modals %}
|
|
|
|
{% block action_button %}
|
|
{% if meta.can_edit or not meta.url_contains_package %}
|
|
<button
|
|
type="button"
|
|
class="btn btn-primary btn-sm"
|
|
onclick="document.getElementById('new_scenario_modal').showModal(); return false;"
|
|
>
|
|
New Scenario
|
|
</button>
|
|
{% endif %}
|
|
{% endblock action_button %}
|
|
|
|
{% block description %}
|
|
<p>
|
|
A scenario contains meta-information that can be attached to other data
|
|
(compounds, rules, ..).
|
|
</p>
|
|
<a
|
|
target="_blank"
|
|
href="https://wiki.envipath.org/index.php/scenarios"
|
|
class="link link-primary"
|
|
>
|
|
Learn more >>
|
|
</a>
|
|
{% endblock description %}
|