forked from data.coop/membersystem
Mikkel Munch Mortensen
7f01d9a277
And move the to "parked_apps" directory, until we've decided what we want to do with them.
9 lines
142 B
Python
9 lines
142 B
Python
from django.contrib import admin
|
|
|
|
from . import models
|
|
|
|
|
|
@admin.register(models.Membership)
|
|
class MembershipAdmin(admin.ModelAdmin):
|
|
pass
|