From e2a7e1f6de7ccd6f509d537244ef2add110c5f8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20P=C3=A9pin?= Date: Sun, 6 Oct 2019 18:48:37 +0200 Subject: [PATCH] BDSProfile: enable the default admin --- bds/admin.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bds/admin.py b/bds/admin.py index 846f6b40..e7181670 100644 --- a/bds/admin.py +++ b/bds/admin.py @@ -1 +1,5 @@ -# Register your models here. +from django.contrib import admin + +from bds.models import BDSProfile + +admin.site.register(BDSProfile)