Statistics
| Branch: | Tag: | Revision:

root / ui / templates / partials / machines.html @ 8d08f18a

History | View | Annotate | Download (1.1 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 "Create New +" %}</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="{% url machines-standard %}" title="{% trans "Icon " %}"></a>
11
            <a class="machines_view_link" id="machines_view_list_link" href="{% url machines-list %}" title="{% trans "List " %}"></a>
12
            <a class="machines_view_link" id="machines_view_single_link" href="{% url machines-single %}" title="{% trans "Single " %}"></a>
13
    </div>
14
</div>
15

    
16
{% include "partials/machines_empty.html" %}
17

    
18
<div id="machinesview">
19
    {% include "partials/machines_icon.html" %}
20
    {% include "partials/machines_single.html" %}
21
    {% include "partials/machines_list.html" %}
22
</div>
23

    
24

    
25
{% include "partials/create_vm.html" %}
26
{% include "partials/manage_metadata.html" %}