-<table>
- <tbody>
- {% for bug in bugs %}
- <tr>
- <th scope="row">
- <a href="{{ bug.url }}">{{ bug }}</a>
- </th>
+{% for bug in bugs %}
+ <article class="media">
+ <div class="media-left">
+ <p class="image is-48x48">
+ {% if bug.creator %}
+ <img src="{{ bug.creator.avatar(64) }}">
+ {% end %}
+ </p>
+ </div>
- <td>
- {{ bug.summary }}
+ <div class="media-content">
+ <p>
+ <a href="{{ bug.url }}">{{ bug }}</a> ‐
+ <strong>{{ bug.summary }}</strong>
+ <small>{{ bug.creator }}</small>
+ <small>{{ locale.format_date(bug.created_at, shorter=True) }}</small>
- <br>
+ <br>
- {{ bug.status }} {% if bug.resolution %}{{ bug.resolution }}{% end %}
+ {{ bug.status }} {% if bug.resolution %}{{ bug.resolution }}{% end %}
- {% if bug.assignee %}
- ‐ {% module LinkToUser(bug.assignee) %}
- {% end %}
- </td>
- </tr>
- {% end %}
- </tbody>
-</table>
+ {% if bug.assignee %}
+ ‐ {% module LinkToUser(bug.assignee) %}
+ {% end %}
+ </p>
+ </div>
+ </article>
+{% end %}