Files
findings/templates/finding_detail.html
usernames122 877a246134 first commit
2025-08-10 23:42:02 +02:00

15 lines
472 B
HTML

{% extends "base.html" %}
{% block title %}Finding: {{ finding.title }}{% endblock %}
{% block content %}
<h2>{{ finding.title }}</h2>
<p><strong>Path:</strong> <a href="{{ finding.path }}">{{ finding.path }}</a></p>
<p><strong>Found by:</strong> {{ user.username }}</p>
<p><strong>Found on:</strong> {{ finding.find_time.strftime('%Y-%m-%d %H:%M') }}</p>
<hr>
<h3>Content Preview</h3>
<pre>{{ finding.content_preview or 'No preview available.' }}</pre>
{% endblock %}