1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-01-27 15:45:20 +00:00

Compare commits

..

No commits in common. "1f90a6c8c97d8081c123a73993cd87e8b96f0790" and "bbe9e54395f5ec3ca9699a921058cabff1cfa1b9" have entirely different histories.

5 changed files with 24 additions and 33 deletions

View file

@ -1,25 +1,24 @@
Django==4.2.9 Django==4.2.7
django_bootstrap5==23.4 django_bootstrap5==23.3
django-bootstrap-icons==0.8.7 django-bootstrap-icons==0.8.6
django-login-required-middleware==0.9.0 django-login-required-middleware==0.9.0
django-otp==1.3.0 django-otp==1.3.0
django-qr-code==4.0.1 django-qr-code==3.1.1
django-auth-ldap==4.5.0 django-auth-ldap==4.5.0
djangorestframework==3.14.0
drf-nested-routers==0.93.5
drf-yasg==1.21.7
eventlet==0.34.3
gunicorn==21.2.0 gunicorn==21.2.0
libsass==0.23.0 libsass==0.22.0
libvirt-python==10.0.0 libvirt-python==9.8.0
lxml==5.1.0 lxml==4.9.3
ldap3==2.9.1
markdown>=3.4.1
python-engineio==4.8.2
python-socketio==5.11.0
qrcode==7.4.2 qrcode==7.4.2
rwlock==0.0.7 rwlock==0.0.7
tzdata
websockify==0.11.0 websockify==0.11.0
whitenoise==6.6.0
zipp==3.17.0 zipp==3.17.0
ldap3==2.9.1
python-engineio==4.8.0
python-socketio==5.10.0
eventlet==0.33.3
djangorestframework==3.14.0
drf-nested-routers==0.93.4
drf-yasg==1.21.7
markdown>=3.4.1
whitenoise==6.6.0

View file

@ -1,9 +1,9 @@
-r ../conf/requirements.txt -r ../conf/requirements.txt
coverage==7.4.0 coverage==7.3.0
django-debug-toolbar==4.2.0 django-debug-toolbar==4.2.0
django-debug-toolbar-template-profiler django-debug-toolbar-template-profiler
pycodestyle==2.11.1 pycodestyle==2.11.1
pyflakes==3.2.0 pyflakes==3.1.0
pylint==3.0.3 pylint==3.0.2
yapf==0.40.2 yapf==0.40.2
black==23.12.1 black==23.10.1

View file

@ -20,7 +20,7 @@
{% if compute.status is True and compute.instance_set.count > 0 %} {% if compute.status is True and compute.instance_set.count > 0 %}
<tr class="table-secondary fw-bold border-bottom border-dark"> <tr class="table-secondary fw-bold border-bottom border-dark">
<td> <td>
<span id="collapse_host_instances_{{ compute.id }}" onclick="hide_host_instances('{{ compute.id }}');" class="bi bi-chevron-up" ></span> <span id="collapse_host_instances_{{ compute.id }}" onclick="hide_host_instances('{{ compute.id }}');">{% bs_icon 'chevron-up'%} </span>
</td> </td>
<td> <td>
<a class="link-dark" href="{% url 'overview' compute.id %}">{{ compute.name }}</a> <a class="link-dark" href="{% url 'overview' compute.id %}">{{ compute.name }}</a>
@ -91,14 +91,14 @@ function hide_all_host_instances() {
var rows = $('table tr'); var rows = $('table tr');
all_host_rows = rows.filter('[host]'); all_host_rows = rows.filter('[host]');
all_host_rows.toggle(); all_host_rows.toggle();
$('span[id^=collapse_host_instances_]').toggleClass("bi bi-chevron-down ").toggleClass("bi bi-chevron-up"); $('span[id^=collapse_host_instances_]').toggleClass("fa-chevron-down").toggleClass("fa-chevron-up");
$('span[id^=inst_count_badge_]').toggleClass("d-none"); $('span[id^=inst_count_badge_]').toggleClass("d-none");
} }
function hide_host_instances(host) { function hide_host_instances(host) {
var rows = $('table tr'); var rows = $('table tr');
host_rows = rows.filter("[host='"+host+"']"); host_rows = rows.filter("[host='"+host+"']");
host_rows.toggle(); host_rows.toggle();
$("span[id='collapse_host_instances_"+host+"']").toggleClass("bi-chevron-down ").toggleClass("bi-chevron-up"); $("span[id='collapse_host_instances_"+host+"']").toggleClass("fa-chevron-down").toggleClass("fa-chevron-up");
$("span[id='inst_count_badge_"+host+"']").toggleClass("d-none"); $("span[id='inst_count_badge_"+host+"']").toggleClass("d-none");
} }
</script> </script>

View file

@ -1,8 +0,0 @@
<?xml version="1.0" ?>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/>
</svg>

Before

Width:  |  Height:  |  Size: 321 B

View file

@ -4,7 +4,7 @@ WSGI config for webvirtcloud project.
It exposes the WSGI callable as a module-level variable named ``application``. It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see For more information on this file, see
https://docs.djangoproject.com/en/4.2/howto/deployment/wsgi/ https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/
""" """
import signal import signal