This commit is contained in:
2025-05-26 16:30:40 -05:00
parent 6de9729329
commit eb111dde14
8 changed files with 90 additions and 22 deletions

View File

@ -0,0 +1,9 @@
{% extends "core_ui/base.html" %}
{% block content %}
<h2>Submissions</h2>
<ul>
{% for s in submissions %}
<li>{{ s.common_name }} ({{ s.scientific_name or 'N/A' }}) - ${{ s.price }}</li>
{% endfor %}
</ul>
{% endblock %}