Fix DB build, laptop icon on hover

pull/827/head
Piero Toffanin 2020-02-29 15:11:52 -05:00
rodzic 083690eb33
commit 1baca617be
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -57,7 +57,7 @@
<ul class="nav nav-second-level">
{% for node in nodes %}
<li>
<a href="{% url 'processing_node' node.id %}"><span class="fa fa-laptop {% if node.is_online %}theme-color-button-primary{% else %}theme-color-button-danger{% endif %}"></span> {{node}}</a>
<a href="{% url 'processing_node' node.id %}"><span class="fa fa-laptop {% if not node.is_online %}theme-color-button-danger{% endif %}"></span> {{node}}</a>
</li>
{% endfor %}

Wyświetl plik

@ -2,6 +2,7 @@ FROM postgres:9.5
MAINTAINER Piero Toffanin <pt@masseranolabs.com>
ENV POSTGIS_MAJOR 2.3
ENV POSTGRES_PASSWORD postgres
RUN . /etc/os-release \
&& echo "deb http://deb.debian.org/debian "$VERSION_CODENAME"-backports main" >> /etc/apt/sources.list \