WIP page leave confirm

This commit is contained in:
vabene1111
2020-07-05 22:15:00 +02:00
parent 5bad507845
commit 5b916e955c
3 changed files with 57 additions and 4 deletions

View File

@ -36,6 +36,13 @@ admin.site.register(SyncLog, SyncLogAdmin)
admin.site.register(Keyword)
class StepAdmin(admin.ModelAdmin):
list_display = ('name', 'type', 'order')
admin.site.register(Step, StepAdmin)
class RecipeAdmin(admin.ModelAdmin):
list_display = ('name', 'internal', 'created_by', 'storage')