{% extends "host/host_base.html" %} {% load i18n %} {% load static %} {% load utility_tags %} {% block title %}{{app.description}}{% endblock %} {% block head %} {{block.super}} {% endblock head %} {% block content %}

{{app.description}} {% trans "Back" %}

{% trans "Edit host" %}: {{host.hostname}}

{% trans "Actions" %}

{% trans "Hostname" %}: {{host.hostname}}
{% trans "Logged user" %}: {% if host.logged_user %} {{host.logged_user}} {% else %} {% trans "None" %} {% endif %}
{% trans "Status" %}: {% if host.isup %} {% trans "Up" %} {% else %} {% trans "Down" %} {% endif %}
{% trans "Screen" %}: {% if host.screen_locked %} {% trans "Locked" %} {% else %} {% trans "Unlocked" %} {% endif %}
{% endblock content %}