## -*- coding: utf-8 -*- Error - ${c.error_message} %if c.redirect_time: %endif <%include file="/base/plugins_base.mako"/>

${h.branding(c.rhodecode_name)}
${c.error_message}
${c.error_explanation}

% if c.messages: % for message in c.messages:
${message}
% endfor % endif %if c.redirect_time:

${_('You will be redirected to %s in %s seconds') % (c.redirect_module,c.redirect_time)}

%endif

Possible Causes

    % if c.causes: %for cause in c.causes:
  • ${cause}
  • %endfor %else:
  • The resource may have been deleted.
  • You may not have access to this repository.
  • The link may be incorrect.
  • %endif

Support

For help and support, go to the ${_('Support Page')}. It may be useful to include your log file; see the log file locations here.

Documentation

For more information, see docs.rhodecode.com.

% if c.show_exception_id:

Exception ID: ${c.exception_id}
Super-admins can see details of the above error in the exception tracker found under admin > settings > exception tracker. % if c.exception_debug:

DEBUG MODE ON FOR EXCEPTION: ${c.exception_id}
REQUEST_ID: ${getattr(request, 'req_id', None)}
----------------
debug mode is controlled by
${c.exception_config_ini}
file settings:

    debug = true
----------------

% for rec in getattr(request, 'req_id_bucket', []):
${rec}
% endfor
% endif

% endif