{% extends 'adoptions/base.html' %} {% block content %}

{{ pet.name|capfirst }}

{{ pet.species }}

{% if pet.breed %}

Breed: {{ pet.breed }}

{% endif %} {% if pet.age %}

Age: {{ pet.age }}

{% endif %} {% if pet.sex %}

Sex: {{ pet.sex }}

{% endif %} {% if pet.vaccinations.all %}

Vaccinations for:

{% endif %}

Submitted by: {{ pet.submitter }}

Submitted on: {{ pet.submission_date|date:"M d Y" }}

{{ pet.description }}

{% endblock %}