
* Added 3 new action executions screens: index, overview, and update dialog * Added "type" attribute to task screens, followed by a corresponding link * Fixed breadcrumbs issue in detail screens following Horizon Newton change * Added state label design to detail screens * Added design to boolean fields * Screenshots: http://pho.to/AXApU Implements blueprint: mistral-dashboard-action-execution-screens Implements blueprint: dashboard-detail-screens-improvements Partially implements blueprint: refactor-execution-link-in-task-executions-screens Closes-Bug: #1642246 Change-Id: I4c270b2b23d548d4e1cb7e8507e804e44e27c88f
39 lines
1.3 KiB
HTML
39 lines
1.3 KiB
HTML
<span class="mistral-wrapper detail-screen">
|
|
{% extends 'mistral/default/base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Action Definition" %}{% endblock %}
|
|
|
|
{% block page_header %}
|
|
{% include "horizon/common/_page_header.html" with title=_("Action Definition") %}
|
|
{% endblock page_header %}
|
|
|
|
{% block main %}
|
|
<div class="detail">
|
|
<h4>{% trans "Overview" %}</h4>
|
|
<hr class="header_rule">
|
|
<dl class="dl-horizontal">
|
|
<dt>{% trans "Name" %}</dt>
|
|
<dd>{{ action.name }}</dd>
|
|
<dt>{% trans "ID" %}</dt>
|
|
<dd>{{ action.id }}</dd>
|
|
<dt>{% trans "Tags" %}</dt>
|
|
<dd>{{ action.tags }}</dd>
|
|
<dt>{% trans "Created at" %}</dt>
|
|
<dd>{{ action.created_at }}</dd>
|
|
<dt>{% trans "Is system" %}</dt>
|
|
<dd>{{ action.is_system }}</dd>
|
|
<dt>{% trans "Updated at" %}</dt>
|
|
<dd>{{ action.updated_at }}</dd>
|
|
<dt>{% trans "Scope" %}</dt>
|
|
<dd>{{ action.scope }}</dd>
|
|
<dt>{% trans "Input" %}</dt>
|
|
<dd>{{ action.input }}</dd>
|
|
<dt>{% trans "Description" %}</dt>
|
|
<dd>{{ action.description }}</dd>
|
|
<dt>{% trans "Definition" %}</dt>
|
|
<dd><pre>{{ action.definition }}</pre></dd>
|
|
</dl>
|
|
</div>
|
|
{% endblock %}
|
|
</span>
|