{% extends 'base.html' %} {% load static i18n %} {% block title %} Public Horses | EquiSeq {% endblock title %} {% block content %}

EquiSeq Horse Management System

List of Public Horses

{% for horse in horses %} {% if horse.public_status == 'Public' %} {% endif %} {% endfor %}
Horse Name Owner Username Horse Breed
{{ horse.name }} {{ horse.owner }} {{ horse.breed|default:"" }}
{% endblock %}