from django.contrib import admin

from .models import Funder, Grant


admin.site.register(Funder)


admin.site.register(Grant)