mistral-dashboard: entities name change for system consistency

* refactored names: task executions, workflow executions

* Screenshots:
https://s17.postimg.org/l2xp52p3j/image.png

Change-Id: Ia11956e222390cf410abbb82d68adcc2d59c5855
This commit is contained in:
Gal Margalit 2016-11-15 09:59:05 +00:00
parent 539d53cf31
commit 1b73cff4dd
4 changed files with 6 additions and 6 deletions

View File

@ -21,7 +21,7 @@ from mistraldashboard import dashboard
class Executions(horizon.Panel):
name = _("Executions")
name = _("Workflow Executions")
slug = 'executions'

View File

@ -1,7 +1,7 @@
{% extends 'mistral/default/table.html' %}
{% load i18n %}
{% block title %}{% trans "Executions" %}{% endblock %}
{% block title %}{% trans "Workflow Executions" %}{% endblock %}
{% block page_header %}
{% include "horizon/common/_page_header.html" with title=_("Executions") %}
{% include "horizon/common/_page_header.html" with title=_("Workflow Executions") %}
{% endblock page_header %}

View File

@ -21,7 +21,7 @@ from mistraldashboard import dashboard
class Tasks(horizon.Panel):
name = _("Tasks")
name = _("Task Executions")
slug = 'tasks'

View File

@ -1,9 +1,9 @@
{% extends 'mistral/default/table.html' %}
{% load i18n %}
{% block title %}
{% trans "Tasks" %}
{% trans "Task Executions" %}
{% endblock %}
{% block page_header %}
{% include "horizon/common/_page_header.html" with title=_("Tasks") %}
{% include "horizon/common/_page_header.html" with title=_("Task Executions") %}
{% endblock page_header %}