7 lines
119 B
Python
Raw Permalink Normal View History

2025-01-20 14:33:03 +05:00
from django.contrib import admin
# Register your models here.
from .models import Device
admin.site.register(Device)