{% extends 'ip_pool/ext.html' %} {% load i18n %} {% block title %}{% trans 'Networks' %}{% endblock %} {% block breadcrumb %} {% endblock %} {% block page-header %} {% trans 'Networks' %} {% endblock %} {% block content %}
{% with can_ch_net=perms.ip_pool.change_networkmodel can_del_net=perms.ip_poo.delete_networkmodel %} {% for netw in networks_list %} {% empty %} {% endfor %} {% endwith %}
{% trans 'Network' %} {% trans 'Kind' %} {% trans 'Description' %} {% trans 'Scope' %}
{{ netw.get_network }} {{ netw.get_kind_display }} {{ netw.description }} {{ netw.get_scope }} {% if can_ch_net %} {% else %} {% endif %} {% if can_del_net %} {% else %} {% endif %}
{% trans 'You have not any networks available' %}
{% trans 'Add' %}
{% endblock %}