15 lines
472 B
HTML
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 %}
|