Initial Commit

This commit is contained in:
Neill Cox 2024-06-26 14:29:06 +10:00
commit 715224653d
58 changed files with 7760 additions and 0 deletions

7
gurps_character/admin.py Normal file
View file

@ -0,0 +1,7 @@
from django.contrib import admin
# Register your models here.
from .models import GURPSCharacter, GameSystem
admin.site.register(GURPSCharacter)
admin.site.register(GameSystem)