{% extends "base.html" %} {% block content %} {% if wireguard_instances %}
                                Transfer: 
                                Latest Handshake:  
                                Endpoints: 
                                Allowed IPs: 
                                    {% for address in peer.peerallowedip_set.all %}{% if address.priority == 0 %}
                                    {% if address.missing_from_wireguard %}
                                        {{ address }}
                                    {% else %}
                                        {{ address }}
                                    {% endif %}
                                    {% endif %}{% endfor %}
                                    
                                    {% for address in peer.peerallowedip_set.all %}{% if address.priority >= 1 %} 
                                    {% if address.missing_from_wireguard %}
                                        {{ address }}
                                    {% else %}
                                        {{ address }}
                                    {% endif %}
                                    {% endif %}{% endfor %}
                                
                            
{% for address in peer.peerallowedip_set.all %}{% if address.priority == 0 %} {% if address.missing_from_wireguard %} {{ address }} {% else %} {{ address }} {% endif %} {% endif %}{% endfor %} {% for address in peer.peerallowedip_set.all %}{% if address.priority >= 1 %} {% if address.missing_from_wireguard %} {{ address }} {% else %} {{ address }} {% endif %} {% endif %}{% endfor %}
{% endcomment %}There are no WireGuard instances configured. You can add a new instance by clicking the button below.