{% extends "facebook/canvas" %} {% load facebook %} {% block title %}Computers{% if role %}: {{ role.full_name }}{% endif %}{% endblock %} {% block body %}
Show:

There {{ computers|pluralize:"is,are" }} {{ computers|length }} computer{{ computers|pluralize }} in The Lab{% if role %} with the role {{ role.full_name }}{% endif %} {% if not computers|length_is:"1" %}there {{ online|pluralize:"is,are" }} {{ online }}{% else %}it is{% if not online %}n't{% endif %}{% endif %} online.

{% for computer in computers %}
{% computer_picture computer t %}
Computer:
{{ computer.sword }}
DNS Name:
{{ computer.full_name }}
OS:
{% with computer.operating_system as operating_system %}
{% if operating_system.url %}{{ operating_system }}{% else %}{{ operating_system }}{% endif %}
{% endwith %}
Status:
{{ computer.sword }} is {% if computer.online %}online{% else %}offline{% endif %}.
{% if computer.online %} {% with computer.local.0 as login %} {% if login %} {% include "facebook/computer-login" %} {% else %} Nobody is logged in at the console. {% endif %} {% endwith %} {% endif %}
{% endfor %}
{% endblock %} {% block js %} {% endblock %} {% block id %}$Id${% endblock %} {# vim: set filetype=htmldjango: #}