2014-06-10 18:41:02 +07:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright 2014 - StackStorm, Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2015-07-22 12:22:01 +00:00
|
|
|
from django.utils.translation import ungettext_lazy
|
2014-06-10 18:41:02 +07:00
|
|
|
|
|
|
|
from horizon import tables
|
|
|
|
|
2015-07-22 12:22:01 +00:00
|
|
|
from mistraldashboard import api
|
2014-09-12 16:28:26 +07:00
|
|
|
from mistraldashboard.default.utils import humantime
|
2015-07-13 09:40:10 +08:00
|
|
|
from mistraldashboard.default.utils import label
|
2014-09-12 16:28:26 +07:00
|
|
|
from mistraldashboard.default.utils import prettyprint
|
2014-06-10 18:41:02 +07:00
|
|
|
|
2014-06-18 15:25:33 +07:00
|
|
|
|
2015-07-22 12:22:01 +00:00
|
|
|
class DeleteExecution(tables.DeleteAction):
|
|
|
|
@staticmethod
|
|
|
|
def action_present(count):
|
|
|
|
return ungettext_lazy(
|
|
|
|
u"Delete Execution",
|
|
|
|
u"Delete Executions",
|
|
|
|
count
|
|
|
|
)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def action_past(count):
|
|
|
|
return ungettext_lazy(
|
|
|
|
u"Deleted Execution",
|
|
|
|
u"Deleted Executions",
|
|
|
|
count
|
|
|
|
)
|
|
|
|
|
|
|
|
def delete(self, request, execution_name):
|
|
|
|
api.execution_delete(request, execution_name)
|
|
|
|
|
|
|
|
|
2014-09-12 16:28:26 +07:00
|
|
|
class ExecutionsTable(tables.DataTable):
|
2014-09-27 21:50:24 -07:00
|
|
|
id = tables.Column(
|
|
|
|
"id",
|
|
|
|
verbose_name=_("ID"),
|
|
|
|
link="horizon:mistral:executions:tasks"
|
|
|
|
)
|
2014-06-18 15:25:33 +07:00
|
|
|
|
2014-09-12 16:28:26 +07:00
|
|
|
workflow_name = tables.Column("workflow_name", verbose_name=_("Workflow"))
|
2014-06-18 15:25:33 +07:00
|
|
|
|
2014-09-27 21:50:24 -07:00
|
|
|
input = tables.Column(
|
|
|
|
"input",
|
|
|
|
verbose_name=_("Input"),
|
|
|
|
filters=[prettyprint]
|
|
|
|
)
|
2015-07-22 12:22:01 +00:00
|
|
|
|
2014-09-27 21:50:24 -07:00
|
|
|
output = tables.Column(
|
|
|
|
"output",
|
|
|
|
verbose_name=_("Output"),
|
|
|
|
filters=[prettyprint]
|
|
|
|
)
|
|
|
|
|
|
|
|
created_at = tables.Column(
|
|
|
|
"created_at",
|
|
|
|
verbose_name=_("Created at"),
|
|
|
|
filters=[humantime]
|
|
|
|
)
|
|
|
|
updated_at = tables.Column(
|
|
|
|
"updated_at",
|
|
|
|
verbose_name=_("Updated at"),
|
|
|
|
filters=[humantime]
|
|
|
|
)
|
2014-06-18 15:25:33 +07:00
|
|
|
|
2015-07-22 12:22:01 +00:00
|
|
|
state = tables.Column(
|
|
|
|
"state",
|
|
|
|
verbose_name=_("State"),
|
|
|
|
filters=[label])
|
2014-06-10 18:41:02 +07:00
|
|
|
|
2015-07-14 21:42:37 +08:00
|
|
|
class Meta(object):
|
2014-06-10 18:41:02 +07:00
|
|
|
name = "executions"
|
|
|
|
verbose_name = _("Executions")
|
2015-07-22 12:22:01 +00:00
|
|
|
table_actions = (DeleteExecution,)
|
|
|
|
row_actions = (DeleteExecution,)
|
2014-06-10 18:41:02 +07:00
|
|
|
|
|
|
|
|
|
|
|
class TaskTable(tables.DataTable):
|
|
|
|
id = tables.Column("id", verbose_name=_("ID"))
|
|
|
|
name = tables.Column("name", verbose_name=_("Name"))
|
2014-09-12 16:28:26 +07:00
|
|
|
|
2014-06-18 12:37:36 +07:00
|
|
|
parameters = tables.Column("parameters", verbose_name=_("Parameters"))
|
|
|
|
output = tables.Column("output", verbose_name=_("Output"))
|
2014-09-12 16:28:26 +07:00
|
|
|
|
|
|
|
created_at = tables.Column("created_at", verbose_name=_("Created at"))
|
|
|
|
updated_at = tables.Column("updated_at", verbose_name=_("Updated at"))
|
|
|
|
|
2014-06-18 15:25:33 +07:00
|
|
|
state = tables.Column("state", verbose_name=_("State"), filters=[label])
|
2014-06-10 18:41:02 +07:00
|
|
|
|
2015-07-14 21:42:37 +08:00
|
|
|
class Meta(object):
|
2014-06-10 18:41:02 +07:00
|
|
|
name = "tasks"
|
|
|
|
verbose_name = _("Tasks")
|