{% extends "base.html" %} {% block title %}Surrenders{% endblock %} {% block page_title %}Surrenders{% endblock %} {% block content %}
{% for s in submissions %} {% else %} {% endfor %}
Rabbit Submitted By Reason Status Received Actions
{{ s.rabbit_name or 'Unnamed' }} {{ s.submitter_name or '—' }} {{ s.reason or '—' }} {% if s.status == 'pending' %}Pending {% elif s.status == 'accepted' %}Accepted {% elif s.status == 'rejected' %}Rejected {% endif %} {{ s.created_at | fmt_date }} View
No submissions found.
{% endblock %}