aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/base/workflow/viewport-base.html
blob: 88229ca3fe5a304979140e9b91f0b400fbb61625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{% extends "base.html" %}
{% load staticfiles %}

{% load bootstrap4 %}

{% block content %}

<!-- Pagination -->
<div class="row mt-3">
    <div class="col">
        <nav>
            <ul class="pagination d-flex flex-row" id="topPagination">
                <li class="page-item flex-shrink-1 page-control" id="workflow-nav-back">
                    <a class="page-link" href="#" id="gob" onclick="submit_and_go('prev')">
                        <i class="fas fa-backward"></i> Back
                    </a>
                </li>
                <li class="page-item flex-grow-1">
                    <a class="page-link disabled" href="#">
                        <i class="far"></i>
                    </a>
                </li>
                <li class="page-item flex-shrink-1 page-control" id="workflow-nav-next">
                    <a class="page-link text-right" href="#" id="gof" onclick="submit_and_go('next')">
                        Next <i class="fas fa-forward"></i>
                    </a>
                </li>
            </ul>
        </nav>
    </div>
</div>
  <div class=”row”>
    <div class=”col-xs-6 col-md-4>
    Is something not working right? Let us know <a href="mailto::{{contact_email}}"> here! </a>
    </div>
</div>
<!-- Top header -->
<div class="row">
    <div class="col">
        <div id="iframe_header" class="row view-header">
            <div class="col-lg-12">
                <h1 class="d-inline-block" id="view_title"></h1>
                <span class="description text-muted" id="view_desc"></span>
                <p id="view_message"></p>
            </div>
        </div>
    </div>
    <div class="col-auto align-self-center d-flex">
        <button id="cancel_btn" class="btn btn-danger ml-auto" onclick="pop_workflow()">Cancel</button>
    </div>
</div>
<div class="row d-flex flex-column flex-grow-1 mt-3">
    <div class="col flex-grow-1">
        <div id="formContainer" class="h-100 w-100"></div>
    </div>
</div>
{% csrf_token %}
<script type="text/javascript">
    function submit_and_go(to) {
        submitStepForm(to);
    }

    $(document).ready(function(){
        $.ajax({
            url: "/workflow/manager/",
            dataType: "json",
            success: update_page
        });
    });

    // global variable required for mxgraph to load its css and images
    mxBasePath = '{% static "node_modules/mxgraph/javascript/src" %}';
</script>
<!-- lazy load scripts -->
<script type="text/javascript" src="{% static "node_modules/mxgraph/javascript/mxClient.js" %}" ></script>
<!-- end lazy load scripts -->
<div class="d-none" id="workflow_pop_form_div">
    <form id="workflow_pop_form" action="/workflow/finish/" method="post">
        {% csrf_token %}
    </form>
</div>
{% endblock content %}