Closes #1512: Added a view to search for an IP address being assigned to an interface

This commit is contained in:
Jeremy Stretch
2017-11-10 11:58:59 -05:00
parent e1d655cb23
commit a0bb7b08bd
7 changed files with 132 additions and 5 deletions

View File

@@ -132,7 +132,7 @@ def querystring(request, **kwargs):
querydict[k] = v
elif k in querydict:
querydict.pop(k)
querystring = querydict.urlencode()
querystring = querydict.urlencode(safe='/')
if querystring:
return '?' + querystring
else: