network_inventory/softwares/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

17 lines
320 B
Python

from django.contrib import admin
# Register your models here.
from .models import (
OperatingSystem,
Software,
SoftwareArchitecture,
SoftwareCategory,
)
admin.site.register(OperatingSystem)
admin.site.register(Software)
admin.site.register(SoftwareArchitecture)
admin.site.register(SoftwareCategory)