Skip to content

Commit

Permalink
feat(admin): add entities to admin app
Browse files Browse the repository at this point in the history
  • Loading branch information
b1rger committed Oct 24, 2024
1 parent 836c311 commit e902d9e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions apis_instance_nsvis/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from django.contrib import admin


from apis_instance_nsvis.models import Person, Place, Institution


@admin.register(Person, Place, Institution)
class NsvisAdmin(admin.ModelAdmin):
pass

0 comments on commit e902d9e

Please sign in to comment.