
* Task table - type column would refer to workflow executions accordingly * Fixed django wrong url params (no logic changed, just better code) * Screenshots: http://pho.to/AZeaP Partially implements blueprint: refactor-execution-link-in-task-executions-screens Change-Id: I70e7ba1f8a6595d15f30cee3f4f17db4d246a34e
14 lines
333 B
HTML
14 lines
333 B
HTML
{% extends 'mistral/default/table.html' %}
|
|
{% load i18n %}
|
|
{% block title %}
|
|
{% trans "Tasks" %}
|
|
{{ task_id }}
|
|
{% endblock %}
|
|
|
|
{% block page_header %}
|
|
{% include "horizon/common/_page_header.html" with title=_("Tasks of Workflow Execution ID:") %}
|
|
<h3>
|
|
{{ execution_id }}
|
|
</h3>
|
|
{% endblock page_header %}
|