mirror of
https://github.com/kennethreitz-archive/travis-light.git
synced 2026-06-21 15:50:58 +00:00
16 lines
246 B
HTML
16 lines
246 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>{{ repo['slug'] }}</h2>
|
|
|
|
<pre>
|
|
{{ build }}
|
|
</pre>
|
|
|
|
{% for build in builds %}
|
|
<li><a href="/{{ repo['slug'] }}/{{ build['id'] }}">{{ build['number'] }}</a></li>
|
|
{% endfor %}
|
|
|
|
|
|
{% endblock %} |