{% extends "base.html" %}
{% load static mini_buildd %}
{% block main %}
{% block title %}Log index for repository {{ repository }}{% endblock %}
{% for status, logs in index.items %}
{{ status|capfirst }}
{% for l in logs %}
- {{ l }}
{% endfor %}
{% endfor %}
{% endblock %}