Add import/export handler views
This commit is contained in:
parent
d0521bfb57
commit
4f54237aef
|
@ -280,6 +280,11 @@ def simple_menus(request):
|
|||
'url': url('datasyncchanges'),
|
||||
'perm': 'datasync.list',
|
||||
},
|
||||
{
|
||||
'title': "Importing / Exporting",
|
||||
'url': url('importing'),
|
||||
'perm': 'importing.list',
|
||||
},
|
||||
{
|
||||
'title': "Tables",
|
||||
'url': url('tables'),
|
||||
|
|
|
@ -33,6 +33,7 @@ def includeme(config):
|
|||
# core views
|
||||
config.include('theo.web.views.common')
|
||||
config.include('tailbone.views.auth')
|
||||
config.include('tailbone.views.importing')
|
||||
config.include('tailbone.views.tables')
|
||||
config.include('tailbone.views.upgrades')
|
||||
config.include('tailbone.views.progress')
|
||||
|
|
Loading…
Reference in a new issue