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

7 lines
132 B
Python
Raw Normal View History

2021-09-06 20:34:43 +02:00
from django.contrib import admin
# Register your models here.
from locations.models import Location
admin.site.register(Location)