We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v1.4.0
When filtering prefixes by tenant, you get no results because it sends a numeric tenant ID rather than the slug.
VLAN/site/rack etc tenant filtering all function correctly as does browsing to Org>Tenants>[tenant]> Prefixes.
Workaround is to replace tenant=<#> with tenant= in the URL: http://netbox/ipam/prefixes/?parent=&tenant=2 >> http://netbox/ipam/prefixes/?parent=&tenant=xyz
The text was updated successfully, but these errors were encountered:
This was due to using the primary key of the Tenant model instead of the slug. (FYI tenant_id=2 would also suffice as a workaround.) Fixing.
tenant_id=2
Sorry, something went wrong.
249faff
Fixes netbox-community#409: Filter IPs and prefixes by tenant slug ra…
e09e542
…ther than by its PK
No branches or pull requests
v1.4.0
When filtering prefixes by tenant, you get no results because it sends a numeric tenant ID rather than the slug.
VLAN/site/rack etc tenant filtering all function correctly as does browsing to Org>Tenants>[tenant]>
Prefixes.
Workaround is to replace tenant=<#> with tenant= in the URL:
http://netbox/ipam/prefixes/?parent=&tenant=2 >> http://netbox/ipam/prefixes/?parent=&tenant=xyz
The text was updated successfully, but these errors were encountered: