Skip to content

Commit

Permalink
fix: return missing admin fields (#3071)
Browse files Browse the repository at this point in the history
  • Loading branch information
rikuke authored Jun 6, 2024
1 parent 9e7dfb9 commit 988034a
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions backend/benefit/applications/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,16 +129,6 @@ class ApplicationAdmin(admin.ModelAdmin):

readonly_fields = ["batch_details"]

fieldsets = (
(None, {"fields": ("status", "batch")}),
(
"Batch Information",
{
"fields": ("batch_details",),
},
),
)

def batch_details(self, obj):
if obj.batch:
url = reverse(
Expand Down

0 comments on commit 988034a

Please sign in to comment.