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

23
templates/profile.html Normal file
View File

@@ -0,0 +1,23 @@
{% extends "base.html" %}
{% block title %}My Findings{% endblock %}
{% block content %}
<h2>My Findings</h2>
<p>Welcome, {{ user.username }}!</p>
{% if findings %}
<ul>
{% for finding in findings %}
<li>
<strong>{{ finding.title }}</strong>
Path: <a href="/findings/{{ finding.id }}">{{ finding.path }}</a>
Found on: {{ finding.find_time.strftime('%Y-%m-%d %H:%M') }}
</li>
{% endfor %}
</ul>
{% else %}
<p>You have no findings yet.</p>
{% endif %}
{% endblock %}