diff --git a/swh/web/browse/identifiers.py b/swh/web/browse/identifiers.py index a9e75e61..885b47b8 100644 --- a/swh/web/browse/identifiers.py +++ b/swh/web/browse/identifiers.py @@ -1,19 +1,19 @@ # Copyright (C) 2017-2020 The Software Heritage developers # See the AUTHORS file at the top-level directory of this distribution # License: GNU Affero General Public License version 3, or any later version # See top-level LICENSE file for more information from django.shortcuts import redirect from swh.web.common.identifiers import resolve_swhid def swhid_browse(request, swhid): """ - Django view enabling to browse the archive using :ref:``. + Django view enabling to browse the archive using :ref:`persistent-identifiers`. The url that points to it is :http:get:`/(swhid)/`. """ swhid_resolved = resolve_swhid(swhid, query_params=request.GET) return redirect(swhid_resolved["browse_url"])