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

${_('The Free license has been installed. You must restart Splunk to activate changes.')}

% else:

${_('Expired license')}

% if not can_change_license:

${_('The Splunk license for this server has expired and search access has been disabled. Contact your Splunk administrator to update the license.')}

% else:

${_('Splunk requires a valid license to work.')}

${_('The Splunk Free license allows you to index 500MB of data per day with no expiration.')}


${_('Install a valid Splunk license file to proceed')}

% endif % endif ## ## buttons ## <%def name="gutter()">
% if is_success: <% qs = {'auto_restart':'1'} %> ${formset.button(_('Restart'), is_primary=True, href=make_url(['manager','search','control'], _qs=qs) )} % else: % if can_change_license: ${formset.button(_('Submit'), is_primary=True, is_submit=True)} % else: ${formset.button(_('Change user'), is_primary=True, is_submit=False, href=make_url(['account','login']))} % endif % endif