network_inventory/nets/admin.py
Andreas Zweili e79eba2828 show all models in the admin interface
Since we decided to create many forms in the frontend the admin interface
should really be a way to access all models even the ones which aren't
accessible from the front end.
2020-06-08 17:02:15 +02:00

12 lines
139 B
Python

from django.contrib import admin
from .models import (
IpStatus,
Net,
)
admin.site.register(IpStatus)
admin.site.register(Net)