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

Add a Pet

{{ form.hidden_tag() }}

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

{% endif %}

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

{% endif %}

{{ 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 %}