Skip to content

Commit

Permalink
Merge pull request #827 from pierotofy/travisfix
Browse files Browse the repository at this point in the history
Fix DB build, laptop icon on hover
  • Loading branch information
pierotofy authored Feb 29, 2020
2 parents 083690e + 1baca61 commit 16b8e03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/templates/app/logged_in_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}

Expand Down
1 change: 1 addition & 0 deletions db/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM postgres:9.5
MAINTAINER Piero Toffanin <[email protected]>

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 \
Expand Down

0 comments on commit 16b8e03

Please sign in to comment.