Merge "mistral-dashboard: entities name change for system consistency"

This commit is contained in:
Jenkins 2016-11-17 06:46:58 +00:00 committed by Gerrit Code Review
commit 15938fa6b1
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 %}