From baee2f9178786a1cb1cf2537d6595b2261cc67ee Mon Sep 17 00:00:00 2001 From: forest Date: Thu, 9 Dec 2021 15:12:48 -0600 Subject: [PATCH] fix margins on admin panel --- capsulflask/templates/admin.html | 28 +++++++--------------------- 1 file changed, 7 insertions(+), 21 deletions(-) diff --git a/capsulflask/templates/admin.html b/capsulflask/templates/admin.html index f2952d1..859754c 100644 --- a/capsulflask/templates/admin.html +++ b/capsulflask/templates/admin.html @@ -39,8 +39,7 @@ {% if in_db_but_not_in_virt|length > 0 %} -
-
+

🚨 in the database but not in the virtualization model 🚨

{% for vm in in_db_but_not_in_virt %} @@ -49,14 +48,12 @@
{% endfor %}
-
{% endif %} {% if state_not_equal_to_desired_state|length > 0 %} -
-
+

😴 vm state != desired state 😴

{% for vm in state_not_equal_to_desired_state %} @@ -72,13 +69,11 @@
{% endfor %}
-
{% endif %} {% if has_no_desired_ip_address|length > 0 %} -
-
+

🐣 has no desired ip address 🐣

{% for vm in has_no_desired_ip_address %} @@ -87,13 +82,11 @@
{% endfor %}
-
{% endif %} {% if has_not_aquired_ip_address_yet|length > 0 %} -
-
+

🏃 hasn't aquired an ip address yet 🏃

{% for vm in has_not_aquired_ip_address_yet %} @@ -102,12 +95,10 @@
{% endfor %}
-
{% endif %} {% if stole_someone_elses_ip_and_own_ip_avaliable|length > 0 %} -
-
+

👻 stole someone elses ip and own desired ip is avaliable 👻

{% for vm in stole_someone_elses_ip_and_own_ip_avaliable %} @@ -122,12 +113,10 @@
{% endfor %}
-
{% endif %} {% if has_wrong_ip|length > 0 %} -
-
+

🥴 has wrong ip address 🥴

{% for vm in has_wrong_ip %} @@ -142,13 +131,11 @@
{% endfor %}
-
{% endif %} {% if stole_someone_elses_ip_but_own_ip_also_stolen|length > 0 %} -
-
+

💀 stole someone elses ip but own desired ip was also stolen 💀

{% for vm in stole_someone_elses_ip_but_own_ip_also_stolen %} @@ -163,7 +150,6 @@
{% endfor %}
-
{% endif %}