{% extends "base_template.html" %} {% block title %}CATTLE Buildreports{% endblock %} {% block styles %} {% endblock %} {% block headscripts %} {% endblock %} {% block content %}
title
description
branch
builders
Type
History?
{% for buildreport in buildreports %}
{# Each "buildreport" is a buildreport model object. #}
{{ buildreport.title }}
{{ buildreport.description|linebreaks }}
{{ buildreport.branch }}
{% for builder in buildreport.builders.all %} {{builder}} {% endfor %}
{% if buildreport.private %} Private {% else %} Public {% endif%}
{% if buildreport.history.all.count > 1 %} {% endif %}
{% endfor %}
{% endblock %} {% block footscripts %} {% endblock %}