summaryrefslogtreecommitdiff
path: root/django-openstack/django_openstack/templates/django_openstack/common/instances/_reboot.html
blob: 3758e1d81d5b0c1ccf6060b8168f5975094338eb (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>