summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/project/instances/templates/instances/_detail_log.html
diff options
context:
space:
mode:
Diffstat (limited to 'openstack_dashboard/dashboards/project/instances/templates/instances/_detail_log.html')
-rw-r--r--openstack_dashboard/dashboards/project/instances/templates/instances/_detail_log.html18
1 files changed, 0 insertions, 18 deletions
diff --git a/openstack_dashboard/dashboards/project/instances/templates/instances/_detail_log.html b/openstack_dashboard/dashboards/project/instances/templates/instances/_detail_log.html
deleted file mode 100644
index bb2525cc..00000000
--- a/openstack_dashboard/dashboards/project/instances/templates/instances/_detail_log.html
+++ /dev/null
@@ -1,18 +0,0 @@
-{% load i18n %}
-{% load url from future %}
-
-<div class="clearfix">
- <h3 class="pull-left">{% trans "Instance Console Log" %}</h3>
-
- <form id="tail_length" action="{% url 'horizon:project:instances:console' instance.id %}" class="form-inline pull-right">
- <label for="tail_length_select">{% trans "Log Length" %}</label>
- <input class="span1" type="text" name="length" value="35" />
- <button class="btn btn-small btn-primary" type="submit">{% trans "Go" %}</button>
- {% url 'horizon:project:instances:console' instance.id as console_url %}
- <a class="btn btn-small" target="_blank" href="{{ console_url }}">{% trans "View Full Log" %}</a>
- </form>
-</div>
-
-<pre class="logs">
- {{ console_log }}
-</pre>