Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / templates / partials / machines.html @ 9766a80e

History | View | Annotate | Download (1.3 kB)

1
{% load i18n %}
2
<!-- the create button -->
3
<div id="machines-pane-top" class="pane-top">
4
    <div id="createcontainer" class="create-container">
5
        <a id="create" rel="#wizard" href="#" class="createbutton" >{% trans "New Machine +" %}</a>
6
    </div>
7

    
8
    <!-- changing between standard/list view -->
9
    <div id="view-select" class="clearfix">
10
        <a class="machines_view_link" id="machines_view_icon_link" href="" title="{% trans "Icon " %}">
11
            <span class="ico"></span><span class="title">{% trans "icon" %}</span>
12
        </a>
13
        <a class="machines_view_link" id="machines_view_list_link" href="" title="{% trans "List " %}">
14
            <span class="ico"></span><span class="title">{% trans "list" %}</span>
15
        </a>
16
        <a class="machines_view_link" id="machines_view_single_link" href="" title="{% trans "Single " %}">
17
            <span class="ico"></span><span class="title">{% trans "single" %}</span>
18
        </a>
19
    </div>
20
</div>
21

    
22
{% include "partials/machines_empty.html" %}
23

    
24
<div id="machinesview">
25
    {% include "partials/machines_icon.html" %}
26
    {% include "partials/machines_single.html" %}
27
    {% include "partials/machines_list.html" %}
28
</div>
29

    
30

    
31
{% include "partials/create_vm.html" %}
32
{% include "partials/manage_metadata.html" %}
33
{% include "partials/vm_connect.html" %}