Closes #1202: Support overlapping assignment of NAT IP addresses

This commit is contained in:
jeremystretch
2022-05-11 16:22:07 -04:00
parent 696c0772e3
commit 60a5049461
5 changed files with 35 additions and 5 deletions

View File

@@ -91,8 +91,14 @@
</td>
</tr>
<tr>
<th scope="row">NAT (outside)</th>
<td>{{ object.nat_outside|linkify|placeholder }}</td>
<th scope="row">Outside NAT IPs</th>
<td>
{% for ip in object.nat_outside.all %}
{{ ip|linkify }}<br/>
{% empty %}
{{ ''|placeholder }}
{% endfor %}
</td>
</tr>
</table>
</div>