mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-25 23:55:24 +00:00
commit
185444009b
5 changed files with 12 additions and 12 deletions
|
@ -72,9 +72,9 @@
|
||||||
{% for instance in instances %}
|
{% for instance in instances %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<a class="link-primary" href="{% url 'instances:instance' instance.id %}">
|
<a class="link-primary" href="{% url 'instances:instance' instance.id %}">{{ instance.name }}</a>
|
||||||
{{ instance.name }}
|
<br>
|
||||||
</a>
|
<p class="m-0 small fst-italic">{{ instance.title }}</p>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<em>
|
<em>
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
Django==3.2.6
|
Django==3.2.7
|
||||||
django_bootstrap5==2.1.1
|
django_bootstrap5==2.1.2
|
||||||
django-icons==4.0.0
|
django-icons==4.0.0
|
||||||
django-login-required-middleware==0.6.1
|
django-login-required-middleware==0.6.1
|
||||||
django-otp==1.0.6
|
django-otp==1.0.6
|
||||||
django-qr-code==2.2.0
|
django-qr-code==2.2.0
|
||||||
gunicorn==20.1.0
|
gunicorn==20.1.0
|
||||||
libsass==0.21.0
|
libsass==0.21.0
|
||||||
libvirt-python==7.6.0
|
libvirt-python==7.7.0
|
||||||
lxml==4.6.3
|
lxml==4.6.3
|
||||||
qrcode==7.2
|
qrcode==7.3
|
||||||
rwlock==0.0.7
|
rwlock==0.0.7
|
||||||
websockify==0.10.0
|
websockify==0.10.0
|
||||||
zipp==3.5.0
|
zipp==3.5.0
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
-r ../conf/requirements.txt
|
-r ../conf/requirements.txt
|
||||||
coverage==5.5
|
coverage==5.5
|
||||||
django-debug-toolbar==3.2.1
|
django-debug-toolbar==3.2.2
|
||||||
pycodestyle==2.7.0
|
pycodestyle==2.7.0
|
||||||
pyflakes==2.3.1
|
pyflakes==2.3.1
|
||||||
pylint==2.9.6
|
pylint==2.10.2
|
||||||
yapf==0.31.0
|
yapf==0.31.0
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<!-- Modal pool -->
|
<!-- Modal pool -->
|
||||||
<div class="modal fade" id="AddInstance" tabindex="-1" role="dialog" aria-labelledby="AddNetPoolLabel" aria-hidden="true">
|
<div class="modal fade" id="AddInstance" tabindex="-1" role="dialog" aria-labelledby="AddInstanceModal" aria-hidden="true">
|
||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
|
|
|
@ -59,6 +59,8 @@
|
||||||
<!-- Tab panes -->
|
<!-- Tab panes -->
|
||||||
<div class="tab-content">
|
<div class="tab-content">
|
||||||
<div role="tabpanel" class="tab-pane tab-pane-bordered active" id="flavor">
|
<div role="tabpanel" class="tab-pane tab-pane-bordered active" id="flavor">
|
||||||
|
{% include 'create_flav_block.html' %}
|
||||||
|
<h3 class="page-header">{% trans "Create from flavor" %}</h3>
|
||||||
{% if not flavors %}
|
{% if not flavors %}
|
||||||
<div class="col-lg-12">
|
<div class="col-lg-12">
|
||||||
<div class="alert alert-warning shadow-sm">
|
<div class="alert alert-warning shadow-sm">
|
||||||
|
@ -66,8 +68,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% include 'create_flav_block.html' %}
|
|
||||||
<h3 class="page-header">{% trans "Create from flavor" %}</h3>
|
|
||||||
<div class="table-responsive">
|
<div class="table-responsive">
|
||||||
<table class="table table-hover">
|
<table class="table table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
|
|
Loading…
Reference in a new issue