diff options
author | Léon Tiekötter <leon@tiekoetter.com> | 2022-07-10 18:43:20 +0200 |
---|---|---|
committer | Léon Tiekötter <leon@tiekoetter.com> | 2022-07-10 18:43:53 +0200 |
commit | 8e509941b9df31fa24c8e622f2bd773b50d7f376 (patch) | |
tree | 6231cc2abef588e207117dd8b664bf5212834182 /searx/templates/simple/new_issue.html | |
parent | 44f2eb50a5566e8e14a1e970f1ed775bf025c1ea (diff) | |
download | searxng-8e509941b9df31fa24c8e622f2bd773b50d7f376.tar.gz searxng-8e509941b9df31fa24c8e622f2bd773b50d7f376.zip |
[mod] allow brand.issue_url to overwrite the step1 url
Diffstat (limited to 'searx/templates/simple/new_issue.html')
-rw-r--r-- | searx/templates/simple/new_issue.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/simple/new_issue.html b/searx/templates/simple/new_issue.html index 91f4f13b5..a143cc7df 100644 --- a/searx/templates/simple/new_issue.html +++ b/searx/templates/simple/new_issue.html @@ -63,7 +63,7 @@ or manually by executing the searx/webapp.py file? --> <input type="checkbox" id="step1"> <label for="step1">{{ _('Start submiting a new issue on GitHub') }}</label> <div class="step1 step_content"> - <p><a href="https://github.com/searxng/searxng/issues?q=is%3Aissue+Bug:%20{{ engine_name }}" target="_blank" rel="noreferrer noreferrer">{{ _('Please check for existing bugs about this engine on GitHub') }}</a></p> + <p><a href="{{ get_setting('brand.issue_url') }}?q=is%3Aissue+Bug:%20{{ engine_name }}" target="_blank" rel="noreferrer noreferrer">{{ _('Please check for existing bugs about this engine on GitHub') }}</a></p> </div> <input class="step1 step1_delay" type="checkbox" id="step2"> <label class="step1 step1_delay" for="step2" >{{ _('I confirm there is no existing bug about the issue I encounter') }}</label> |