mirror of
				https://github.com/retspen/webvirtcloud
				synced 2025-07-31 12:41:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			135 lines
		
	
	
		
			No EOL
		
	
	
		
			6.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			135 lines
		
	
	
		
			No EOL
		
	
	
		
			6.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
{% load i18n %}
 | 
						|
{% load staticfiles %}
 | 
						|
{% block title %}{% trans "Instances" %} - {{ compute.name }}{% endblock %}
 | 
						|
{% block style %}
 | 
						|
    <link rel="stylesheet" href="{% static "css/sortable-theme-bootstrap.css" %}" />
 | 
						|
{% endblock %}
 | 
						|
{% block content %}
 | 
						|
    <!-- Page Heading -->
 | 
						|
    <div class="row">
 | 
						|
        <div class="col-lg-12">
 | 
						|
            {% if request.user.is_superuser %}
 | 
						|
                <a href="{% url 'create_instance_select_type' compute.id %}" type="button" class="btn btn-success btn-header float-right">
 | 
						|
                    <span class="fa fa-plus" aria-hidden="true"></span>
 | 
						|
                </a>
 | 
						|
            {% endif %}
 | 
						|
            {% if all_host_vms or all_user_vms %}
 | 
						|
                <div class="float-right search">
 | 
						|
                    <input id="filter" class="form-control" type="text" placeholder="{% trans 'Search' %}">
 | 
						|
                </div>
 | 
						|
            {% endif %}
 | 
						|
            <h2 class="page-header">{{ compute.name }}</h2>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
    <div class="row">
 | 
						|
       <div class="col-lg-12">
 | 
						|
            <nav aria-label="breadcrumb">
 | 
						|
                <ol class="breadcrumb bg-light shadow-sm">
 | 
						|
                    <li class="breadcrumb-item active">
 | 
						|
                        <a href="{% url 'overview' compute.id %}"><i class="fa fa-dashboard"></i> {% trans "Overview" %}</a>
 | 
						|
                    </li>
 | 
						|
                    <li class="breadcrumb-item">
 | 
						|
                        <span class="font-weight-bold"><i class="fa fa-server"></i> {% trans "Instances" %}</span>
 | 
						|
                    </li>
 | 
						|
                    <li class="breadcrumb-item">
 | 
						|
                        <a href="{% url 'storages' compute.id %}"><i class="fa fa-hdd-o"></i> {% trans "Storages" %}</a>
 | 
						|
                    </li>
 | 
						|
                    <li class="breadcrumb-item">
 | 
						|
                        <a href="{% url 'networks' compute.id %}"><i class="fa fa-sitemap"></i> {% trans "Networks" %}</a>
 | 
						|
                    </li>
 | 
						|
                    <li class="breadcrumb-item">
 | 
						|
                        <a href="{% url 'interfaces' compute.id %}"><i class="fa fa-wifi"></i> {% trans "Interfaces" %}</a>
 | 
						|
                    </li>
 | 
						|
                    <li class="breadcrumb-item">
 | 
						|
                        <a href="{% url 'nwfilters' compute.id %}"><i class="fa fa-filter"></i> {% trans "NWFilters" %}</a>
 | 
						|
                    </li>
 | 
						|
                    <li class="breadcrumb-item">
 | 
						|
                        <a href="{% url 'secrets' compute.id %}"><i class="fa fa-key"></i> {% trans "Secrets" %}</a>
 | 
						|
                    </li>
 | 
						|
                </ol>
 | 
						|
            </nav>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
    <!-- /.row -->
 | 
						|
    {% include 'errors_block.html' %}
 | 
						|
    {% include 'messages_block.html' %}
 | 
						|
    <div class="row">
 | 
						|
        {% if not  all_host_vms %}
 | 
						|
            <div class="col-lg-12">
 | 
						|
                <div class="alert alert-warning alert-dismissable fade show">
 | 
						|
                    <i class="fa fa-exclamation-triangle"></i> <strong>{% trans "Warning" %}:</strong> {% trans "Hypervisor doesn't have any Instances" %}
 | 
						|
                    <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
        {% else %}
 | 
						|
            <div class="col-lg-12">
 | 
						|
                <table class="table table-hover sortable-theme-bootstrap" data-sortable>
 | 
						|
                    <thead>
 | 
						|
                    <tr>
 | 
						|
                        <th scope="col">{% trans 'Name' %}<br>{% trans 'Description' %}</th>
 | 
						|
                        <th scope="col" class="d-none d-md-table-cell">{% trans 'User' %}</th>
 | 
						|
                        <th scope="col">{% trans 'Status' %}</th>
 | 
						|
                        <th scope="col">{% trans 'VCPU' %}</th>
 | 
						|
                        <th scope="col">{% trans 'Memory' %}</th>
 | 
						|
                        <th scope="col" style="width:200px;" data-sortable="false">{% trans 'Actions' %}</th>
 | 
						|
                    </tr>
 | 
						|
                    </thead>
 | 
						|
                    <tbody class="searchable">
 | 
						|
                        {% for host, insts  in all_host_vms.items %}
 | 
						|
                            {% for inst, vm in insts.items %}
 | 
						|
                                <tr>
 | 
						|
                                    <td><a class="text-secondary" href="{% url 'instances:instance' host.0 inst %}">{{ inst }}</a><br><small><em>{{ vm.title }}</em></small></td>
 | 
						|
                                    <td class="d-none d-md-table-cell"><small><em>{% if vm.userinstances.count > 0 %}{{ vm.userinstances.first_user.user.username }}{% if vm.userinstances.count > 1 %} (+{{ vm.userinstances.count|add:"-1" }}){% endif %}{% endif %}</em></small></td>
 | 
						|
                                    <td>
 | 
						|
                                        {% if vm.status == 1 %}<span class="text-success">{% trans "Active" %}</span>{% endif %}
 | 
						|
                                        {% if vm.status == 5 %}<span class="text-danger">{% trans "Off" %}</span>{% endif %}
 | 
						|
                                        {% if vm.status == 3 %}<span class="text-warning">{% trans "Suspend" %}</span>{% endif %}
 | 
						|
                                    </td>
 | 
						|
                                    <td>{{ vm.vcpu }}</td>
 | 
						|
                                    <td>{{ vm.memory|filesizeformat }}</td>
 | 
						|
                                    <td class="text-nowrap">
 | 
						|
                                        {% include 'instance_actions.html' %}
 | 
						|
                                    </td>
 | 
						|
                                </tr>
 | 
						|
                            {% endfor %}
 | 
						|
                        {% endfor %}
 | 
						|
                    </tbody>
 | 
						|
                </table>
 | 
						|
             </div>
 | 
						|
        {% endif %}
 | 
						|
    </div>
 | 
						|
{% endblock %}
 | 
						|
{% block script %}
 | 
						|
<script src="{% static "js/sortable.min.js" %}"></script>
 | 
						|
<script>
 | 
						|
    function open_console(uuid) {
 | 
						|
        window.open("{% url 'console' %}?token=" + uuid, "", "width=850,height=685");
 | 
						|
    }
 | 
						|
</script>
 | 
						|
<script>
 | 
						|
    function filter_table() {
 | 
						|
        var rex = new RegExp($(this).val(), 'i');
 | 
						|
        $('.searchable tr').hide();
 | 
						|
        $('.searchable tr').filter(function () {
 | 
						|
            return rex.test($(this).text());
 | 
						|
        }).show();
 | 
						|
        Cookies.set("instances_filter", $(this).val(), { expires: 1 });
 | 
						|
    }
 | 
						|
    $(document).ready(function () {
 | 
						|
        instances_filter_cookie = Cookies.get("instances_filter");
 | 
						|
        if (instances_filter_cookie) {
 | 
						|
            $('#filter').val(instances_filter_cookie);
 | 
						|
            $('#filter').each(filter_table);
 | 
						|
        }
 | 
						|
        (function ($) {
 | 
						|
            $('#filter').keyup(filter_table)
 | 
						|
        }(jQuery));
 | 
						|
    });
 | 
						|
</script>
 | 
						|
<script>
 | 
						|
    function goto_instance_clone(compute, instance) {
 | 
						|
        window.location = "/instances/" + compute + "/" + instance + "/#clone";
 | 
						|
    }
 | 
						|
</script>
 | 
						|
{% endblock %} |