From 28e81a1eaef81c3ff04dc580d8c7aed1a2d9d02e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Mon, 26 Aug 2024 11:39:46 +0200 Subject: [PATCH] fix: use the right template for capture_hash_details --- website/web/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/web/__init__.py b/website/web/__init__.py index e62aab59..188c845a 100644 --- a/website/web/__init__.py +++ b/website/web/__init__.py @@ -1725,7 +1725,7 @@ def identifier_details(identifier_type: str, identifier: str) -> str: @app.route('/capture_hash_details//', methods=['GET']) def capture_hash_details(hash_type: str, h: str) -> str: captures = get_capture_hash_investigator(hash_type, h) - return render_template('identifier_details.html', hash_type=hash_type, + return render_template('hash_type_details.html', hash_type=hash_type, h=h, captures=captures)