Skip to content

Commit

Permalink
Merge pull request #502 from dimagi/hy/progadmin
Browse files Browse the repository at this point in the history
Add Program Model to Django Admin
  • Loading branch information
hemant10yadav authored Mar 5, 2025
2 parents 4a85228 + 9418fdb commit 11cfa67
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions commcare_connect/program/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from django.contrib import admin

from commcare_connect.program.models import Program


@admin.register(Program)
class ProgramAdmin(admin.ModelAdmin):
list_display = ("name", "organization")

0 comments on commit 11cfa67

Please sign in to comment.