{% extends '_list_base.html' %} {% load i18n %} {% load common_tags %} {% block content_left_head %} {% trans "Create IDC" %} {% endblock %} {% block table_head %} {% trans 'ID' %} {% trans 'Name' %} {% trans 'Asset num' %} {% trans 'Bandwidth' %} {% trans 'Contact' %} {% trans 'Phone' %} {% trans 'Address' %} {% endblock %} {% block table_body %} {% for idc in idc_list %} {{ idc.id }} {{ idc.name }} {{ idc.assets.count }} {{ idc.bandwidth }} {{ idc.contact }} {{ idc.phone }} {{ idc.address }} {% trans 'Update' %} {% trans 'Delete' %} {% endfor %} {% endblock %} {% block custom_foot_js %} {% endblock %}