aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/feed_description.html
blob: 7f387c6704d92b46257f202dd3c937624d4b8942 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% from 'feed_sources.html' import srcs_desc %}

{% macro item_desc(b, title_url, title) -%}
  <p>
    Date: {{ b.date }}<br/>
    Project home: <a href="{{ title_url }}">{{ title|e }}</a><br/>
    Builder summary: <a href="{{ b.summary_link }}">{{ b.name }}</a><br/>
    Build details: <a href="{{ b.link }}">Build {{ b.number }}</a><br/>
    Author list: <b>{{ b.responsible_users|join(', ') }}</b><br/>
    Failed step(s): <b>{{ b.failed_steps|join(', ') }}</b><br/>
  </p>
  {% for src in b.sources %}
  {{ srcs_desc(src) }}
  {% endfor %}
  <p>
    <i>Last lines of the build log:</i>
  </p>
{%- endmacro %}