horizon/horizon/dashboards/nova/instances/templates/instances/_detail_log.html
Gabriel Hurley 2c0a8f3220 Volumes Redux.
Makes all volume-service interactions optional (includes
volumes displays and volumes portion of launch workflow).

Splits Instances & Volumes into separate panels to
facilitate Volumes being optional.

Adds an admin Volumes panel to complement the user
Volumes panel.

Adds the capability to mark Steps in a Workflow as
requiring a given service.

Implements blueprint nova-volume-optional.

Change-Id: I3fb4255617ae52be64e7a300afd691dc36b95586
2012-07-03 16:44:38 -07:00

20 lines
692 B
HTML

{% load i18n %}
<div class="clearfix">
<h3 class="pull-left">Instance Console Log</h3>
<p class="pull-right">
{% url horizon:nova:instances:console instance.id as console_url %}
<a class="btn btn-small" target="_blank" href="{{ console_url }}">{% trans "View Full Log" %}</a>
</p>
<form id="tail_length" action="{% url horizon:nova:instances:console instance.id %}" class="span3 pull-right">
<label class="pull-left log-length" for="tail_length_select">Log Length</label>
<input class="span1" type="text" name="length" value="35" />
<input value="Go" class="btn-small btn-primary" type="submit" />
</form>
</div>
<pre class="logs">
{{ console_log }}
</pre>