
- add `MasterView.configurable` concept, `/configure.mako` template - add new master view for DataSync Threads (needs content) - tweak view config for DataSync Changes accordingly - update the Configure DataSync page per `configurable` concept - add new Configure Import/Export page, per `configurable` - add basic views for Raw Permissions
20 lines
473 B
Mako
20 lines
473 B
Mako
## -*- coding: utf-8; -*-
|
|
<%inherit file="/master/index.mako" />
|
|
|
|
<%def name="context_menu_items()">
|
|
${parent.context_menu_items()}
|
|
% if request.has_perm('datasync_changes.list'):
|
|
<li>${h.link_to("View DataSync Changes", url('datasyncchanges'))}</li>
|
|
% endif
|
|
</%def>
|
|
|
|
<%def name="render_grid_component()">
|
|
<b-notification :closable="false">
|
|
TODO: this page coming soon...
|
|
</b-notification>
|
|
${parent.render_grid_component()}
|
|
</%def>
|
|
|
|
|
|
${parent.body()}
|
|
|