blob: f25e644284d571ebdec2ff566bd782e4254a2d47 (
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
|
{% extends "layout.html" %}
{% load bootstrap3 %}
{% load staticfiles %}
{% block basecontent %}
<div id="wrapper">
<!-- Page Content -->
<div id="page-wrapper">
{% block content %}
{% endblock content %}
</div>
<!-- /#page-wrapper -->
</div>
{% 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 %}
<script>
function step_on_leave() {
{% block onleave %}
alert("override onleave");
{% endblock %}
}
</script>
<div class="messages">
{% block element_messages %}
{% bootstrap_messages %}
{% endblock %}
</div>
<!-- /#wrapper -->
{% endblock basecontent %}
|