{% extends "base.html" %} {% block title %}Add a Pet - Pet Adoption Agency{% endblock %} {% block content %}
{{ form.name.label }} {{ form.name(size=32) }} {% if form.name.errors %}
{{ form.species.label }} {{ form.species(size=32) }} {% if form.species.errors %}
{{ 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 %}
Add Pet