1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #1202: Support overlapping assignment of NAT IP addresses

This commit is contained in:
jeremystretch
2022-05-11 16:22:07 -04:00
parent e2a02de6e9
commit 01d2ede097
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>