{% if list %}
    <table class="firewall-configuration__ip-list firewall-ip-table">
        <thead>
        <tr>
            <th class="firewall-ip-table__th">{{ 'IP Address'|trans }}</th>
{#            <th class="firewall-ip-table__th">{{ 'Date added'|trans }}</th>#}
            <th class="firewall-ip-table__th">{{ 'Actions'|trans }}</th>
        </tr>
        </thead>
        <tbody>
        {% for item in list %}
            {% if item.ip %}
            <tr class="firewall-ip-table__tr">
                <td class="firewall-ip-table__td">{{ item.ip }}</td>
                <td class="firewall-ip-table__td">
                    <div data-ip="{{ item.ip }}"
                         data-action="{{ item.list_name }}"
                         data-wrap="#wtotem_{{ item.list_name }}_list"
                         class="wtotem_remove_address firewall-ip-table__remove">
                        {{ 'Remove'|trans }}
                    </div>
                </td>
            </tr>
            {% endif %}
        {% endfor %}
        </tbody>
    </table>
{% else %}
    <div class="wtotem-firewall-settings__no-data">
        <div class="wtotem-firewall-settings__no-data-icon">
            <img src="{{ images_path }}list.svg">
        </div>
        <div>
            {{ 'No IP address here'|trans }}
        </div>
    </div>
{% endif %}