summaryrefslogtreecommitdiff
path: root/tuskar_ui/infrastructure/templates/infrastructure/overview/_last_events.html
diff options
context:
space:
mode:
Diffstat (limited to 'tuskar_ui/infrastructure/templates/infrastructure/overview/_last_events.html')
-rw-r--r--tuskar_ui/infrastructure/templates/infrastructure/overview/_last_events.html18
1 files changed, 0 insertions, 18 deletions
diff --git a/tuskar_ui/infrastructure/templates/infrastructure/overview/_last_events.html b/tuskar_ui/infrastructure/templates/infrastructure/overview/_last_events.html
deleted file mode 100644
index e0659d6a..00000000
--- a/tuskar_ui/infrastructure/templates/infrastructure/overview/_last_events.html
+++ /dev/null
@@ -1,18 +0,0 @@
-{% if show_last_events %}
-<strong>{{ last_events_title }}</strong>
-<div>
- <dl>
- {% for event in last_events %}
- <dd>
- <time datetime="{{ event.event_time }}">{{ event.event_time }}</time>
- <br />
- {{ event.resource_name }} |
- {{ event.resource_status }} |
- {{ event.resource_status_reason }}
- </dd>
- <br />
- {% endfor %}
- </dl>
-</div>
-<p><a href="{% url 'horizon:infrastructure:history:index' %}">See full log</a></p>
-{% endif %}