From b94a6df756f80890ca0c04d9c08e05eb7b87870c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20P=C3=A9rez-Cerezo?= Date: Tue, 17 Jul 2018 16:00:44 +0200 Subject: Various html improvements --- templates/buglist.html | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) (limited to 'templates/buglist.html') diff --git a/templates/buglist.html b/templates/buglist.html index 142dc69..2183366 100644 --- a/templates/buglist.html +++ b/templates/buglist.html @@ -1,3 +1,4 @@ +{% import "macros.html" as macros %} @@ -14,19 +15,32 @@ <h3> Bugs in {{prname}} </h3> + Report bugs by sending an e-mail to <a href="mailto:{{prname}}@{{DOMAIN}}" >{{prname}}@{{DOMAIN}}</a> or using the <a href="#ReplyForm">Form below.</a> + <div class="devavatars" > + Developers:<br> + {% for i in dev_avatars %} + <img class="avatar" src="{{ i }}" alt="avatar" /> + {% endfor %} + <div class="floatbarrier"> </div> + </div> </header> <table> <thead> - <td>Id - <td>Name - <td>Number of replies - <td>Created - <td>Last Reply - <td>Status + <tr> + <td> + <td>Id + <td>Subject + <td>Replies + <td>Created + <td>Last Reply + <td>Status + </tr> </thead> {% for i in bugs %} <tr class="{% if i.closed %} closed {% endif %}" > <td> + <img src="{{ i.avatar }}" style="height:1em;" alt="creator avatar" title="Creator avatar"> + <td class="id" > {{ i.id }} <td> <a href="/{{ prname }}/{{ i.id }}.html"> {{ i.subject|e }}</a> @@ -45,4 +59,7 @@ </tr> {% endfor %} </table> + +{{ macros.form(prname, DOMAIN) }} + </body> -- cgit v1.2.3