diff --git a/biocompute/__init__.py b/biocompute/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/biocompute/admin.py b/biocompute/admin.py new file mode 100644 index 00000000..8d91d575 --- /dev/null +++ b/biocompute/admin.py @@ -0,0 +1,13 @@ +"""BioCompute Object Admin Pannel +""" + +from django.contrib import admin +from biocompute.models import BCO + +class BioComputeAdmin(admin.ModelAdmin): + list_display = ["", ""] + +# class NewUserAdmin(admin.ModelAdmin): +# list_display = ["email", "temp_identifier","token", "hostname", "created"] + +admin.site.register(BCO, BioComputeAdmin) \ No newline at end of file diff --git a/biocompute/apps.py b/biocompute/apps.py new file mode 100644 index 00000000..1e861838 --- /dev/null +++ b/biocompute/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class Biocompute(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = "biocompute"