mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-10 00:42:06 +00:00
6 lines
152 B
Python
6 lines
152 B
Python
from django.contrib import admin
|
|
from models import Contributor, ContributorType
|
|
|
|
admin.site.register(ContributorType)
|
|
admin.site.register(Contributor)
|