Skip to content

Commit

Permalink
add memberbucks to admin
Browse files Browse the repository at this point in the history
  • Loading branch information
jabelone committed Nov 14, 2023
1 parent ae89a20 commit 5fb8a3d
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions memberportal/access/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,26 @@ class DoorsAdmin(admin.ModelAdmin):


@admin.register(DoorLog)
class ProfileAdmin(admin.ModelAdmin):
class DoorLogAdmin(admin.ModelAdmin):
pass


@admin.register(Interlock)
class DoorsAdmin(admin.ModelAdmin):
class InterlockAdmin(admin.ModelAdmin):
pass


@admin.register(InterlockLog)
class ProfileAdmin(admin.ModelAdmin):
class InterlockLogAdmin(admin.ModelAdmin):
pass


@admin.register(MemberbucksDevice)
class MemberbucksDeviceAdmin(admin.ModelAdmin):
pass


# TODO:
# @admin.register(MemberbucksDeviceLog)
# class MemberbucksDeviceLogAdmin(admin.ModelAdmin):
# pass

0 comments on commit 5fb8a3d

Please sign in to comment.