summaryrefslogtreecommitdiff
path: root/templates/buglist.html
diff options
context:
space:
mode:
authorGabriel Pérez-Cerezo <gabriel@gpcf.eu>2018-07-17 16:00:44 +0200
committerGabriel Pérez-Cerezo <gabriel@gpcf.eu>2018-07-17 16:00:44 +0200
commitb94a6df756f80890ca0c04d9c08e05eb7b87870c (patch)
tree74a34ddded993d2428506a290ec369c87899e960 /templates/buglist.html
parent95679599de538a4833dd873f0630e5819b60db10 (diff)
downloadhemiptera-b94a6df756f80890ca0c04d9c08e05eb7b87870c.tar.gz
hemiptera-b94a6df756f80890ca0c04d9c08e05eb7b87870c.tar.bz2
hemiptera-b94a6df756f80890ca0c04d9c08e05eb7b87870c.zip
Various html improvements
Diffstat (limited to 'templates/buglist.html')
-rw-r--r--templates/buglist.html29
1 files changed, 23 insertions, 6 deletions
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 %}
<!DOCTYPE html>
<head>
<title>
@@ -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>