{% extends "base.html" %} {% load i18n %} {% load url from future %} {% block heading %}{{ rackrow }}{% endblock %} {% block content %}

{% trans "Rackrow Info" %}

{% trans "name" %}:{{ rackrow.name }}
{% trans "Datacenter" %}:{{ rackrow.dc }}

{% trans "Racks Info" %}

{% for rack in racks %}
{% for eq in rack.equipments %} {% if eq.serial %} {% for unit in eq.model.units %} {% if unit == eq.model.u %} {% if eq.ticket_set.all %} {% else %} {% if eq.comments %} {% else %} {% endif %} {% endif %} {% endif %} {% endfor %} {% else %} {% if eq.rack.model.inrow_ac %} {% else %} {% endif %} {% endif %} {% endfor %}
{{ rack }}
{{ eq.unit|add:unit|add:"-1"|stringformat:"02d" }}{{ eq.model }}i{{ eq.model }} i{{ eq.model }}
{{ eq.unit|stringformat:"02d" }}
{{ eq.unit|stringformat:"02d" }}
{% endfor %}
{% endblock %}