summaryrefslogtreecommitdiff
path: root/horizon/horizon/templates/horizon/common/instances/_reboot.html
blob: 2fa3e53720d5a3fdd666989ee1d12d812477bd16 (plain)
1
2
3
4
5
6
7
8
9
{% load i18n %}
<form id="form_reboot_{{ instance.id }}" class="form-reboot" method="post">
  {% csrf_token %}
  {% for hidden in form.hidden_fields %}
    {{ hidden }}
  {% endfor %}
  <input name="instance" type="hidden" value="{{ instance.id }}" />
  <input id="reboot_{{ instance.id }}" class="reboot" title="Instance: {{ instance.name }}" type="submit" value="{% trans "Reboot" %}" />
</form>