mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-12-02 06:41:55 +00:00
13 lines
235 B
Python
13 lines
235 B
Python
|
from django.contrib import admin
|
||
|
|
||
|
from feincms.models import Region, Template
|
||
|
|
||
|
|
||
|
admin.site.register(Region,
|
||
|
list_display=('title', 'key', 'inherited'),
|
||
|
)
|
||
|
admin.site.register(Template,
|
||
|
list_display=('title', 'path'),
|
||
|
)
|
||
|
|