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

Fixes #108: Added search for Sites

This commit is contained in:
Jeremy Stretch
2016-06-29 12:06:37 -04:00
parent a1953bab8b
commit fbbdb3807c
4 changed files with 68 additions and 1 deletions

View File

@@ -61,6 +61,7 @@ def expand_pattern(string):
class SiteListView(ObjectListView):
queryset = Site.objects.all()
filter = filters.SiteFilter
table = tables.SiteTable
template_name = 'dcim/site_list.html'