first commit
This commit is contained in:
14
templates/finding_detail.html
Normal file
14
templates/finding_detail.html
Normal file
@@ -0,0 +1,14 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user