{% extends 'infra_optim/base.html' %} {% load i18n %} {% block title %}{% trans 'Actions: ' %}{{ action.uuid }}{% endblock %} {% block page_header %} {% include 'horizon/common/_page_header.html' with title=_('Actions: ')|add:action.uuid %} {% endblock page_header %} {% block main %}

{% trans "Audit Info" %}

{% trans "UUID" %}
{{ action.uuid|default:"—" }}
{% trans "Type" %}
{{ action.type|default:"—" }}
{% url 'horizon:admin:action_templates:detail' action.action_template_uuid as action_template_url %}
{% trans "Audit Template" %}
{{ action.action_template_uuid|default:_("—") }}
{% trans "State" %}
{{ action.state|default:"—" }}
{% trans "Deadline" %}
{{ action.deadline|default:"—" }}
{% trans "Created At" %}
{{ action.created_at|default:"—" }}
{% trans "Update At" %}
{{ action.updated_at|default:"—" }}
{{ table.render }}
{% endblock %}