{% extends "base.html" %} {% block title %}{{ pet.name }} - Pet Adoption Agency{% endblock %} {% block content %}
Species: {{ pet.species }}
Age: {{ pet.age }}
Notes: {{ pet.notes }}
{{ form.photo_url.label }} {{ form.photo_url(size=32) }} {% if form.photo_url.errors %}
{{ form.age.label }} {{ form.age() }} {% if form.age.errors %}
{{ form.notes.label }} {{ form.notes(cols=32, rows=4) }} {% if form.notes.errors %}
{{ form.available.label }} {{ form.available() }} {% if form.available.errors %}
Update Pet