<%inherit file="//layout/admin_lite_dialog.html"/> <%namespace name="lib" file="//lib.html" /> <%namespace name="formset" file="//formset.html" /> <%def name="title()">${_('Change master association')} - ${parent.title()} <%def name="get_breadcrumbs()"> <% return [ [_('Manager'), ['manager']], [_('Licensing'), ['manager','system','licensing']], [_('Change master association'), None] ] %> % if controller_exception:
<%lib:render_exception e="${controller_exception}" />
% endif % if is_success:
${_('Change successful')}

${_('The master server was successfully changed.')}

% else:

${_('Change master association')}

% if is_own_master:

${_('This server, %s, is currently acting as a master license server.') % h(local_slave_name)}

% else:

${_('This server %(slave)s is currently associated with the master license server located at: %(master)s.') % dict(slave=h(local_slave_name), master=h(master_server_uri))}

% endif

${_('Choosing this option will:')}

  • ${_('Point the local indexer at the local master license server')}
  • ${_('Disconnect the local indexer from any remote license server')}

${_('Choosing this option will:')}

  • ${_('Deactivate the local master license server')}
  • ${_('Point the local indexer at license server specified below')}
  • ${_('Discontinue license services to remote indexers currently pointing to this server')}
% endif ## ## buttons ## <%def name="gutter()">
% if is_success: % if requires_restart: <% qs = {'auto_restart':'1'} %> ${formset.button(_('Restart later'), href=return_to)} ${formset.button(_('Restart now'), is_primary=True, href=make_url(['manager','search','control'], _qs=qs) )} % else: ${formset.button(_('OK'), is_primary=True, href=return_to)} % endif % else: ${formset.button(_('Cancel'), href=return_to)} ${formset.button(_('Save'), is_primary=True, is_submit=True)} % endif