{% extends "base.html" %} {% block content %}

User {{ user.get_username }}'s Fish Table

Filters:

Species:

Weight: -

Length: -

{% if fish_list %}
{% for fish in fish_list %} {% if user == fish.upload.uploader %} {% endif %} {% endfor %}
Species Name
Length
Weight
Date Caught
GPS Coordinates
Other Comments
Upload
Uploader
{{ fish.species_name }} {{ fish.fish_length }} mm {{ fish.fish_weight }} g {{ fish.date_caught }} {{ fish.gps_coordinates }} {{ fish.other_comments }} {{ fish.upload.timestamp }} {{ fish.upload.uploader }}
{% else %}

There are no fish in the database that match your filters.

{% endif %}

Miss a Fish? Add to an upload here!

{% endblock %}