fix: use the right template for capture_hash_details

pull/937/head
Raphaël Vinot 2024-08-26 11:39:46 +02:00
parent 0dbf4624bc
commit 28e81a1eae
1 changed files with 1 additions and 1 deletions

View File

@ -1725,7 +1725,7 @@ def identifier_details(identifier_type: str, identifier: str) -> str:
@app.route('/capture_hash_details/<string:hash_type>/<string:h>', 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)