{% extends "layout/default.html" %} {% set title = _("Options") %} {% block body %}

{{_("Options")}}

{{_('Parameter')}} {{_('Informations')}}
{{ _('Hostname') }} {{ getHost }}
{{ _('Platform') }} {{ getPlat }}
{{ _('RAM') }}
{{ _('Data') }} {{_('Update Data')}}
{{ _('Disk') }}
{{ _('UpTime') }} {{ g.uptime }}














{% if g.admin == 1 %}
{% for house in g.houses %} {% endfor %}
{{_('House')}} {{_('Address')}} {{_('City')}} {{_('Zip Code')}} {{_('Country')}} {{_('Latitude')}} {{_('Longitude')}} {{_('Change')}}
{{house.name}} {{house.address}} {{house.city}} {{house.postal}} {{house.country}} {{house.latitude}} {{house.longitude}} {{_('Delete')}}
{% for room in g.rooms %} {% endfor %}
{{_('Name')}} {{_('House')}} {{_('Change')}}
{{room.name}} {{room.house}} {{_('Delete')}}
{% for machine in g.machines %} {% endfor %}
{{_('Id')}} {{_('Name')}} {{_('House')}} {{_('Room')}} {{_('Host')}} {{_('Change')}}
{{machine.id}} {{machine.name}} {{machine.house}} {{machine.room}} {{machine.host}} {{_('Delete')}}
{% if g.admin == 1 %}


{{ _("Admin Options") }}



{{_("Update Onyx")}} {{_("Close Onyx")}} {{_("Manage Account")}}
{% endif %}
{% endif %}

{% endblock %} {% block script %} {% endblock %}