1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/factions/admin.py

7 lines
172 B
Python
Raw Permalink Normal View History

2021-10-03 16:44:54 +02:00
from django.contrib import admin
from simple_history.admin import SimpleHistoryAdmin
from factions.models import Faction
admin.site.register(Faction, SimpleHistoryAdmin)