{% extends "inventory/base.html" %} {% block section_title %}List of Computers{% endblock %} {% block content %} {% if computer_list %} {% for computer in computer_list %} {% endfor %}
Hostname Owner
{{ computer.name }} {{ computer.owner }}
{% endif %} {% endblock %}