forked from enviPath/enviPy
Initial bayer app Show Pack Classification Adjusted docker compose to bayer specifics Adjusted Dockerfile for Bayer Adding secret flags to group, add secret pools to packages Adjusted View for Package creation Prep configs, added Package Create Modal wip More on PES wip wip Wip minor PW interactions API PES wip Make Select Widget reflect required make required generallay available Update UI if pathway mode is set to build Added ais circle adjustments Initial Zoom, fix AD Creation wip
20 lines
334 B
Python
20 lines
334 B
Python
from django.contrib import admin
|
|
|
|
# Register your models here.
|
|
from .models import (
|
|
PESCompound,
|
|
PESStructure
|
|
)
|
|
|
|
|
|
class PESCompoundAdmin(admin.ModelAdmin):
|
|
pass
|
|
|
|
|
|
class PESStructureAdmin(admin.ModelAdmin):
|
|
pass
|
|
|
|
|
|
admin.site.register(PESCompound, PESCompoundAdmin)
|
|
admin.site.register(PESStructure, PESStructureAdmin)
|