'next_uuid' Action field is replaced by 'parents'

'next_uuid' field has been replaced by 'parents' field, which is
a list of parents action linked to a current one. In that case,
I propose to remove this information (there is a column in the
dashboard) which is not readable and give unclear information
about actions workflow.

Partially Implements: blueprint planner-storage-action-plan
Depends-On: Ide2c8fc521488e486eac8f9f89d3f808ccf4b4d7

Change-Id: Iccaa5bfe89a1897ef3d93088c7cd2d3ee2cdef6a
This commit is contained in:
David TARDIVEL 2016-12-15 15:54:10 +01:00
parent ea247a3720
commit 073848663d
2 changed files with 0 additions and 20 deletions

View File

@ -61,15 +61,6 @@ class ActionsFilterAction(horizon.tables.FilterAction):
policy_rules = (("infra-optim", "action:detail"),)
def get_next_action_uuid_link(datum):
try:
return urlresolvers.reverse(
"horizon:admin:actions:detail",
kwargs={"action_uuid": getattr(datum, "next_uuid", None)})
except urlresolvers.NoReverseMatch:
return None
def get_action_plan_link(datum):
try:
return urlresolvers.reverse(
@ -97,10 +88,6 @@ class ActionsTable(horizon.tables.DataTable):
'action_plan_uuid',
verbose_name=_('Action Plan'),
link=get_action_plan_link)
next_action = horizon.tables.Column(
'next_uuid',
verbose_name=_('Next Action'),
link=get_next_action_uuid_link)
def get_object_id(self, datum):
return datum.uuid
@ -130,10 +117,6 @@ class RelatedActionsTable(horizon.tables.DataTable):
'action_plan_uuid',
verbose_name=_('Action Plan'),
link=get_action_plan_link)
next_action = horizon.tables.Column(
'next_uuid',
verbose_name=_('Next Action'),
link=get_next_action_uuid_link)
def get_object_id(self, datum):
return datum.uuid

View File

@ -20,9 +20,6 @@
<dd><a href="{{ action_plan_url }}">
{{ action.action_plan_uuid|default:_("&mdash;") }}
</a></dd>
{% url 'horizon:admin:actions:detail' action.next_uuid as next_action_url %}
<dt>{% trans "Next Action" %}</dt>
<dd><a href="{{ next_action_url }}">{{ action.next_uuid|default:_("&mdash;") }}</a></dd>
<dt>{% trans "State" %}</dt>
<dd>{{ action.state|default:"&mdash;" }}</dd>
<dt>{% trans "Created At" %}</dt>