searx/templates/simple/new_issue.html
{% macro new_issue(engine_name, engine_reliability) %}
{{- '' -}} **Version of SearXNG, commit number if you are using on master branch and stipulate if you forked SearXNG** {% if searx_git_url and searx_git_url != 'unknow' %} Repository: {{ searx_git_url }} Branch: {{ searx_git_branch }} Version: {{ searx_version }}{% else %}{% endif %} **How did you install SearXNG?****What happened?****How To Reproduce****Expected behavior****Screenshots & Logs****Additional context****Technical report** {% for error in engine_reliability.errors %} {% if secondary %}Warning{% else %}Error{% endif %} {{'\n '}}* Error: {{ error.exception_classname or error.log_message }} {{' '}}* Percentage: {{ error.percentage }} {{' '}}* Parameters: {{ error.log_parameters }} {{' '}}* File name: {{ error.filename }}:{{ error.line_no }} {{' '}}* Function: {{ error.function }} {{' '}}* Code: {{ error.code }} {{'\n'-}} {%- endfor -%} {{ _('Start submitting a new issue on GitHub') }}
{{ _('Please check for existing bugs about this engine on GitHub') }}
{{ _('I confirm there is no existing bug about the issue I encounter') }}
{{ _('If this is a public instance, please specify the URL in the bug report') }}
{{ _('Submit a new issue on Github including the above information') }} {% endmacro %}