{% extends "layout/layout.html" %} {% from "paginator/paginator.html" import paginator %} {% block title %} Home {% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
{% include 'message.html' %}
From to yrs old
{% for pet in pagination_result.items %}
pet
  • Name: {{pet.name}}
  • Age: {{pet.age}}, Sex: {{pet.sex}}
  • W: {{pet.weight}}lbs., H: {{pet.height}}ft.
  • Location: {{pet.location}}
  • {%if pet.adoption != none and pet.adoption.status.name != 'rejected' %}
  • This pet is currently in an adoption process.
  • {% else %}
  • Ask for adoption!
  • {% endif %}
{% endfor %}
{{ paginator(pagination_result.page, pagination_result.pages, pagination_result.has_prev, pagination_result.has_next, pagination_result.prev_num, pagination_result.next_num ) }}
{% endblock %}