{% extends 'base.html' %} {% load i18n %} {% load task_filters %} {% block title %}{% trans "Notification Details" %}{% endblock %} {% block page_header %} {% include 'horizon/common/_detail_header.html' %} {% endblock %} {% block main %}
{% trans "ID" %}
{{ notification.uuid }}
{% trans "Error" %}
{{ notification.error }}
{% trans "Notes" %}
{{ notification.notes }}
{% trans "Created On" %}
{{ notification.created_on }}
{% trans "Acknowleged" %}
{{ notification.acknowledged }}
{% trans "Task" %}
{{ notification.task }}
{% trans "Task Type" %}
{{ task.task_type }}
{% trans "Request By" %}
{{ task.request_by }}
{% trans "Task Status" %}
{{ task.status }}
{% endblock %}