7 lines
147 B
Python
7 lines
147 B
Python
|
from gen.web.grampsdb.models import *
|
||
|
from django.contrib import admin
|
||
|
|
||
|
for type_name in get_tables("all"):
|
||
|
admin.site.register(type_name[1])
|
||
|
|