{% extends "machines/base.html" %} {% load i18n %} {% load machine_extras %} {% block head_title %}{{ machine.hostname }} | {{ block.super }}{% endblock %} {% block content %}

{{ _('Machines') }}

{{ machine.hostname }} {{ machine.sys_ip }}

Legend
Added
Changed
Deleted
{# TODO: uniform date format #}
{{ _('Machine details') }}
{{ _('IP address') }} {{ machine.sys_ip }}
{{ _('Hostname') }} {{ machine.hostname }}
{{ _('External IP address') }} {% if machine.ext_ip %}{{ machine.ext_ip }}{% else %}{{ _('None') }}{% endif %}
{{ _('Added') }} {% if machine.date_added %} {% endif %}
{{ _('Scanned') }} {% if machine.date_scanned %} {% endif %}
{% include "machines/tabs/system.html" %}
{% include "machines/tabs/interfaces.html" %}
{% include "machines/tabs/services.html" %}
{% include "machines/tabs/rpms.html" %}
{% include "machines/tabs/iptables.html" %}
{% include "machines/tabs/apacheconfig.html" %}
{% include "machines/tabs/phpconfig.html" %}
{% include "machines/tabs/mysqlconfig.html" %}
{% include "machines/tabs/sshconfig.html" %}
{% endblock %}