Adding extensibility to workflow template file.

Fixes bug 1154358.

Change-Id: I8a2f9fc8fb65afb3290d998c5726ae3fec7c67fc
This commit is contained in:
Lin Hua Cheng 2013-03-12 16:15:26 -07:00
parent f38cd451df
commit 45cb691f1c

View File

@ -4,8 +4,10 @@
<form {{ workflow.attr_string|safe }} action="{{ workflow.get_absolute_url }}" {% if add_to_field %}data-add-to-field="{{ add_to_field }}"{% endif %} method="POST">{% csrf_token %}
{% if REDIRECT_URL %}<input type="hidden" name="{{ workflow.redirect_param_name }}" value="{{ REDIRECT_URL }}"/>{% endif %}
<div class="modal-header">
{% block modal-header %}
{% if modal %}<a href="#" class="close" data-dismiss="modal">&times;</a>{% endif %}
<h3>{{ workflow.name }}</h3>
{% endblock %}
</div>
<div class="modal-body clearfix">
{% block modal-body %}
@ -29,9 +31,13 @@
{% endblock %}
</div>
<div class="modal-footer">
{% block modal-footer %}
<input class="btn btn-primary pull-right" type="submit" value="{{ workflow.finalize_button_name }}" />
{% if modal %}<a class="btn secondary cancel close">{% trans "Cancel" %}</a>{% endif %}
{% endblock %}
</div>
</form>
</div>
{% endwith %}
{% block modal-js %}
{% endblock %}