The task display template formatting had split the Django url template tag across two lines and broken it. This resulted in a gibberish URL for task logs.
Fix by placing the tag and its arguments on a single line. [YOCTO #9837] Signed-off-by: Elliot Smith <[email protected]> --- bitbake/lib/toaster/toastergui/templates/task.html | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/bitbake/lib/toaster/toastergui/templates/task.html b/bitbake/lib/toaster/toastergui/templates/task.html index 86789bd..214c777 100644 --- a/bitbake/lib/toaster/toastergui/templates/task.html +++ b/bitbake/lib/toaster/toastergui/templates/task.html @@ -25,8 +25,10 @@ {%if task.task_executed %} {# executed tasks outcome #} {% if task.logfile %} - <a class="btn btn-default btn-lg" href="{% url 'build_artifact' build.id - "tasklogfile" task.pk %}">Download task log</a> + <a class="btn btn-default btn-lg" + href="{% url 'build_artifact' build.id 'tasklogfile' task.pk %}"> + Download task log + </a> {% endif %} {# show stack trace for failed task #} {% if task.outcome == task.OUTCOME_FAILED and log_head %} @@ -156,8 +158,10 @@ this prebuilt task is reusing"></span></a> {%elif task.outcome == task.OUTCOME_CACHED%} {% for t in task.get_related_setscene %} {% if forloop.last %} - <a class="btn btn-default btn-lg" href="{% url - 'build_artifact' build.id "tasklogfile" t.pk %}">Download task log</a> + <a class="btn btn-default btn-lg" + href="{% url 'build_artifact' build.id "tasklogfile" t.pk %}"> + Download task log + </a> {% endif %} {% endfor %} -- 2.7.4 -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
