Merge "Removing absolute URLs from data processing templates"

This commit is contained in:
Jenkins 2015-03-21 02:55:28 +00:00 committed by Gerrit Code Review
commit 8c866eea1c
2 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@
var job_type; var job_type;
$.ajax({ $.ajax({
url: "/project/data_processing/jobs/launch-job", url: "{% url 'horizon:project:data_processing.jobs:launch-job' %}",
data: {"job_id": $("#id_job").val(), data: {"job_id": $("#id_job").val(),
"json": true }, "json": true },
success: function (data, textStatus, jqXHR) { success: function (data, textStatus, jqXHR) {

View File

@ -49,7 +49,7 @@
<a id="jobex_guide_btn" <a id="jobex_guide_btn"
class=" btn btn-default btn-small btn-create btn-inline" class=" btn btn-default btn-small btn-create btn-inline"
title="{% trans "Job Execution Guide" %}" title="{% trans "Job Execution Guide" %}"
href="/project/data_processing/wizard/jobex_guide"> href="{% url 'horizon:project:data_processing.wizard:jobex_guide' %}">
{% trans "Job Execution Guide" %} {% trans "Job Execution Guide" %}
</a> </a>
</div> </div>