{% extends "base.html" %} {% block title %}{{ pet.name }} - Pet Adoption Agency{% endblock %} {% block content %}

{{ pet.name }}

Species: {{ pet.species }}

{% if pet.photo_url %} Photo of {{ pet.name }} {% endif %} {% if pet.age %}

Age: {{ pet.age }}

{% endif %}

Notes: {{ pet.notes }}

{% if pet.available %}
Available
{% else %}
Not Available
{% endif %}

Edit Pet

{{ form.hidden_tag() }}

{{ form.photo_url.label }}
{{ form.photo_url(size=32) }}
{% if form.photo_url.errors %}

{% endif %}

{{ form.age.label }}
{{ form.age() }}
{% if form.age.errors %}

{% endif %}

{{ form.notes.label }}
{{ form.notes(cols=32, rows=4) }}
{% if form.notes.errors %}

{% endif %}

{{ form.available.label }}
{{ form.available() }}
{% if form.available.errors %}

{% endif %}

{% endblock %}