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

Closes #695: Added is_private field to RIR

This commit is contained in:
Jeremy Stretch
2016-12-06 13:59:13 -05:00
parent 6e5950be77
commit f007b0dbde
10 changed files with 66 additions and 16 deletions

View File

@@ -28,7 +28,7 @@ class RIRAdmin(admin.ModelAdmin):
prepopulated_fields = {
'slug': ['name'],
}
list_display = ['name', 'slug']
list_display = ['name', 'slug', 'is_private']
@admin.register(Aggregate)