first commit

This commit is contained in:
usernames122
2025-08-10 23:42:02 +02:00
commit 877a246134
24 changed files with 957 additions and 0 deletions

View 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 %}