{% extends "base.html" %} {% block title %}Surrender — {{ submission.rabbit_name or submission.id[:8] }}{% endblock %} {% block page_title %}Surrender Detail{% endblock %} {% block topbar_actions %} ← Back {% endblock %} {% block content %}
{{ submission.rabbit_name or 'Unnamed rabbit' }} {% if submission.status == 'pending' %}Pending {% elif submission.status == 'accepted' %}Accepted {% elif submission.status == 'rejected' %}Rejected {% endif %}
Rabbit Details
Name
{{ submission.rabbit_name or '—' }}
Breed / Colour
{{ submission.breed_colour or '—' }}
Approx. Age
{{ submission.approx_age or '—' }}
Gender
{{ submission.gender or '—' }}
Neutered / Spayed
{{ submission.neutered_spayed or '—' }}
{% if submission.health_notes %}
Health Notes
{{ submission.health_notes }}
{% endif %} {% if submission.reason %}
Reason for Surrender
{{ submission.reason }}
{% endif %}
Submitter
Name
{{ submission.submitter_name or 'Anonymous' }}
Phone
{{ submission.submitter_phone or '—' }}
Email
{{ submission.submitter_email or '—' }}
Agreement accepted {{ submission.agreement_accepted_at.strftime('%d %b %Y %H:%M') if submission.agreement_accepted_at else '—' }} UTC (version {{ submission.agreement_version or '—' }})
Received {{ submission.created_at | fmt_date }}
{% if submission.status == 'accepted' %}
Outcome
Accepted{% if submission.reviewed_by %} by {{ submission.reviewed_by.username }}{% endif %} {% if submission.reviewed_at %} on {{ submission.reviewed_at.strftime('%d %b %Y') }}{% endif %}. {% if submission.rabbit %} Created rabbit record: {{ submission.rabbit.name }} (no hutch assigned yet — place from the Rabbits page). {% endif %}
{% elif submission.status == 'rejected' %}
Outcome
Rejected{% if submission.reviewed_by %} by {{ submission.reviewed_by.username }}{% endif %} {% if submission.reviewed_at %} on {{ submission.reviewed_at.strftime('%d %b %Y') }}{% endif %}. {% if submission.admin_note %}
Note: {{ submission.admin_note }}
{% endif %}
{% endif %} {% if submission.status == 'pending' %}
Review
{% else %}
{% endif %} {% endblock %}