summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/commands.html
blob: ac413541624245fc7f4ee7c9102d29c918f24724 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{% extends 'base.html' %}
{% import "macros.html" as macros %}

{% block nav_scopes %}active{% endblock %}

{% block container %}
    <form id="scopesForm">
        <input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>
    </form>
    {{ super() }}
</form>
{% endblock %}

{% block sidebar %}
  {{ macros.scopes_tree_collapse(scopes) }}
{% endblock %}

{% block commands %}
  <input class="btn btn-light" type="submit" value="{{ _('Power on (WoL)') }}"
         form="scopesForm" formaction="{{ url_for('action_wol') }}" formmethod="get">
  <input class="btn btn-light" type="submit" value="{{ _('Power off') }}"
         form="scopesForm" formaction="{{ url_for('action_poweroff') }}" formmethod="get">
  <input class="btn btn-light" type="submit" value="{{ _('Reboot') }}"
         form="scopesForm" formaction="{{ url_for('action_reboot') }}" formmethod="get">
  <input class="btn btn-light" type="submit" value="{{ _('Refresh') }}"
         form="scopesForm" formaction="{{ url_for('action_refresh') }}" formmethod="post">
  <input class="btn btn-light" type="submit" value="{{ _('Hardware') }}"
         form="scopesForm" formaction="{{ url_for('action_hardware') }}" formmethod="get">
  <input class="btn btn-light" type="submit" value="{{ _('Software') }}"
         form="scopesForm" formaction="{{ url_for('action_software') }}" formmethod="get">
  <input class="btn btn-light" type="submit" value="{{ _('Start session') }}"
         form="scopesForm" formaction="{{ url_for('action_session') }}" formmethod="get">
  <input class="btn btn-light" type="submit" value="{{ _('Restore Image') }}"
         form="scopesForm" formaction="{{ url_for('action_image_restore') }}" formmethod="get">
  <input class="btn btn-light" type="submit" value="{{ _('Partition & Format') }}"
         form="scopesForm" formaction="{{ url_for('action_setup_show') }}" formmethod="get">
  <input class="btn btn-light" type="submit" value="{{ _('Client details') }}"
         form="scopesForm" formaction="{{ url_for('action_client_info') }}" formmethod="get">
  <input class="btn btn-light" type="submit" value="{{ _('Create image') }}"
         form="scopesForm" formaction="{{ url_for('action_image_create') }}" formmethod="get">
  <input class="btn btn-light" type="submit" value="{{ _('Set boot mode') }}"
         form="scopesForm" formaction="{{ url_for('action_mode') }}" formmethod="get">
  <input class="btn btn-light" type="submit" value="{{ _('Set ogLive') }}"
         form="scopesForm" formaction="{{ url_for('action_oglive') }}" formmethod="get">
  <div class="dropdown btn">
    <button class="btn btn-secondary btn-light dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-expanded="false">
      Logs
    </button>
    <div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
    <input class="btn btn-light dropdown-item" type="submit" value="{{ _('Log') }}"
           form="scopesForm" formaction="{{ url_for('action_legacy_log') }}" formmethod="get">
    <input class="btn btn-light dropdown-item" type="submit" value="{{ _('Real time log') }}"
           form="scopesForm" formaction="{{ url_for('action_legacy_rt_log') }}" formmethod="get">
    </div>
  </div>
{% endblock %}