Beispiel #1
0
def add_pet():
    """ GET and POST for adding a pet"""
    form = PetForm()

    if (form.validate_on_submit()):
        Pet.add_from_form(form)
        return redirect('/')

    return render_template('pet_form.html', form=form)