2023-02-24 16:04:00 -05:00
|
|
|
from django.contrib.contenttypes.models import ContentType
|
|
|
|
|
2020-03-14 03:03:22 -04:00
|
|
|
# Webhook content types
|
2020-02-24 16:12:46 -05:00
|
|
|
HTTP_CONTENT_TYPE_JSON = 'application/json'
|
2023-02-24 16:04:00 -05:00
|
|
|
|
|
|
|
# Dashboard
|
|
|
|
DEFAULT_DASHBOARD = [
|
|
|
|
{
|
|
|
|
'widget': 'extras.ObjectCountsWidget',
|
|
|
|
'width': 4,
|
|
|
|
'height': 3,
|
|
|
|
'title': 'IPAM',
|
|
|
|
'config': {
|
|
|
|
'models': [
|
|
|
|
'ipam.aggregate',
|
|
|
|
'ipam.prefix',
|
|
|
|
'ipam.ipaddress',
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'widget': 'extras.ObjectCountsWidget',
|
|
|
|
'width': 4,
|
|
|
|
'height': 3,
|
|
|
|
'title': 'DCIM',
|
|
|
|
'config': {
|
|
|
|
'models': [
|
|
|
|
'dcim.site',
|
|
|
|
'dcim.rack',
|
|
|
|
'dcim.device',
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'widget': 'extras.NoteWidget',
|
|
|
|
'width': 4,
|
|
|
|
'height': 3,
|
|
|
|
'config': {
|
|
|
|
'content': 'Welcome to **NetBox**!'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'widget': 'extras.ChangeLogWidget',
|
|
|
|
'width': 12,
|
|
|
|
'height': 6,
|
|
|
|
},
|
|
|
|
]
|