Skip to content

Commit

Permalink
feat: add Profession to admin interface
Browse files Browse the repository at this point in the history
  • Loading branch information
b1rger committed Oct 3, 2023
1 parent d4159d1 commit 2a51180
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apis_ontology/admin.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from django.contrib import admin
from reversion.admin import VersionAdmin

from .models import Title, Event, Institution, Person, Place, Work, Source, Text
from .models import Title, Event, Institution, Person, Place, Work, Source, Text, Profession


@admin.register(Title, Event, Institution, Person, Place, Work, Source, Text)
@admin.register(Title, Event, Institution, Person, Place, Work, Source, Text, Profession)
class OeblAdmin(VersionAdmin):
pass

0 comments on commit 2a51180

Please sign in to comment.