Merge "Adding extensibility to workflow template file."

This commit is contained in:
Jenkins 2013-03-17 23:42:36 +00:00 committed by Gerrit Code Review
commit e1827b890e

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 %}