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

23 lines
554 B
HTML

{% extends "base.html" %}
{% block title %}My Findings{% endblock %}
{% block content %}
<h1>{{ user.username }}'s profile:</h1>
<p>Their Findings</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 %}