aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/workflow/viewport-element.html
blob: bf133041120a2e443e0354b36d25b65e8832fd8d (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
{% load bootstrap4 %}
{% load staticfiles %}

{% block basecontent %}

    {% block content %}
    {% endblock content %}
    {% block vport_comm %}
             <script type="text/javascript">
                var step_count = {{ step_number|default:0 }};
                var active_step = {{ active_step|default:0 }};
                var render_correct = {{ render_correct|default:"false" }};
                var title = "{{ step_title|default:"Workflow Step" }}";
                var description = "{{ description|default:"Contact the admins, because this field should have something else filled in here" }}";
                if(render_correct){
                    parent.update_context();
                }
                parent.update_description(title, description);
            </script>

    {% endblock vport_comm %}
    {% block validate_step %}
        <script>

            function step_is_valid()
            {
                valid = confirm("Is this form valid?");
                if( valid )
                {
                    return true;
                }
                else{
                    return false;
                }
            }

            function onError()
            {
                alert("Error: something!");
            }
        </script>

    {% endblock validate_step %}

    <div class="messages">
        {% block element_messages %}
        {% bootstrap_messages %}
        {% endblock %}
    </div>
{% endblock basecontent %}