fix: point to GitHub for bug reports (#3625)
* fix: point to GitHub for bug reports * fix: point report bug link to template chooser * fix: point report bug link to template chooser (2) Co-authored-by: Nicolas Giard <github@ngpixel.com>
This commit is contained in:
parent
a3e7910594
commit
7b3ec180ab
|
@ -1,4 +1,4 @@
|
|||
{# Copyright The IETF Trust 2007, All Rights Reserved #}
|
||||
{# Copyright The IETF Trust 2007-2022, All Rights Reserved #}
|
||||
{% extends "base.html" %}
|
||||
{% load static %}
|
||||
{% block title %}500 Internal Server Error{% endblock %}
|
||||
|
@ -17,9 +17,9 @@
|
|||
</p>
|
||||
<p class="error-text">
|
||||
A failure report with details about what happened has been sent to the
|
||||
server administrators. It would be helpful if you would file a bug
|
||||
report with additional information at the
|
||||
<a href="https://trac.ietf.org/trac/ietfdb/newticket">IETF database issue tracker</a>, too.
|
||||
server administrators. It would be helpful if you would create an issue
|
||||
providing additional information at
|
||||
<a href="https://github.com/ietf-tools/datatracker/issues">GitHub</a>, too.
|
||||
</p>
|
||||
|
||||
{% endblock %}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<!DOCTYPE html> {% load ietf_filters static %}
|
||||
{# Copyright The IETF Trust 2015-2021, All Rights Reserved #}
|
||||
{# Copyright The IETF Trust 2015-2022, All Rights Reserved #}
|
||||
{% load origin %}{% origin %}
|
||||
{% load bootstrap3 %}
|
||||
<html lang="en">
|
||||
|
@ -133,12 +133,12 @@
|
|||
<p class="small text-muted">
|
||||
{% if version_num %}
|
||||
<a href="/release/about">About</a> |
|
||||
IETF Datatracker |
|
||||
<a href="https://github.com/ietf-tools/datatracker/">IETF Datatracker<a> |
|
||||
<a href="/release/{{version_num}}/">Version {{ version_num }}</a> |
|
||||
{{revision_date}} |
|
||||
{% endif %}
|
||||
Report a bug:
|
||||
<a href="https://trac.ietf.org/trac/ietfdb/newticket">Tracker:<span class="fa fa-bug"></span></a>
|
||||
<a href="https://github.com/ietf-tools/datatracker/issues/new/choose">GitHub:<span class="fa fa-bug"></span></a>
|
||||
{% if bugreport_email %}
|
||||
<a href="mailto:{{ bugreport_email }}">Email:<span class="fa fa-envelope"></span></a>
|
||||
{% endif %}
|
||||
|
@ -170,4 +170,4 @@
|
|||
<script src="{% static 'jquery.tablesorter/js/jquery.tablesorter.combined.min.js' %}"></script>
|
||||
{% endif %}
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{# Copyright The IETF Trust 2015-2019, All Rights Reserved #}{% load origin %}{% origin %}
|
||||
{# Copyright The IETF Trust 2015-2022, All Rights Reserved #}{% load origin %}{% origin %}
|
||||
{% load ietf_filters managed_groups wg_menu active_groups_menu group_filters cache %}
|
||||
|
||||
{% if flavor != "top" %}
|
||||
|
@ -157,10 +157,10 @@
|
|||
<li><a href="/api/">API Help</a></li>
|
||||
<li><a href="{% url 'ietf.release.views.release' %}">Release notes</a></li>
|
||||
{% if flavor == "top" %}<li class="divider hidden-xs"></li>{% endif %}
|
||||
<li><a href="https://trac.ietf.org/trac/ietfdb/newticket"><span class="fa fa-bug"></span> Report a bug</a></li>
|
||||
<li><a href="https://github.com/ietf-tools/datatracker/issues/new/choose"><span class="fa fa-bug"></span> Report a bug</a></li>
|
||||
{% if flavor == "top" %}</ul>{% endif %}
|
||||
</li>
|
||||
|
||||
{% if flavor == "top" %}
|
||||
{% include "base/menu_user.html" %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% extends "base.html" %}
|
||||
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
||||
{# Copyright The IETF Trust 2015-2022, All Rights Reserved #}
|
||||
{% load origin %}
|
||||
|
||||
{% block title %}About the Datatracker{% endblock %}
|
||||
|
@ -23,10 +23,9 @@
|
|||
<p>
|
||||
|
||||
All the Datatracker code is publicly avaliable from the
|
||||
<a href="https://svn.ietf.org/svn/tools/ietfdb">IETF tools SVN repository</a>.
|
||||
Bug tickets and wiki notes are available from the
|
||||
<a href="https://trac.ietf.org/trac/ietfdb">Issue Tracker</a>, and
|
||||
there are also <a href="/release">release notes</a> available since version 2.00.
|
||||
<a href="https://github.com/ietf-tools/datatracker">IETF tools GitHub repository</a>.
|
||||
Bug tickets should be reported as <a href="https://github.com/ietf-tools/datatracker/issues">issues</a> at GitHub.
|
||||
There are also <a href="/release">release notes</a> available since version 2.00.
|
||||
|
||||
</p>
|
||||
<p>
|
||||
|
|
Loading…
Reference in a new issue