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
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)
|