diff options
author | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2018-07-31 17:33:45 +0200 |
---|---|---|
committer | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2018-07-31 17:33:45 +0200 |
commit | e3f24f6437d928df13517c8c6ff010204d2f65f9 (patch) | |
tree | 85fa28c917ee4759e73a911681dc682f53ee56d7 /templates/buglist.html | |
parent | bf9072e5a34cc3ab14b704fbef1fa4bb5dc14829 (diff) | |
download | hemiptera-e3f24f6437d928df13517c8c6ff010204d2f65f9.tar.gz hemiptera-e3f24f6437d928df13517c8c6ff010204d2f65f9.tar.bz2 hemiptera-e3f24f6437d928df13517c8c6ff010204d2f65f9.zip |
added ability to create project descriptions.
Diffstat (limited to 'templates/buglist.html')
-rw-r--r-- | templates/buglist.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/templates/buglist.html b/templates/buglist.html index eb16bf0..2745a8e 100644 --- a/templates/buglist.html +++ b/templates/buglist.html @@ -13,7 +13,11 @@ <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> + {% if desc != "" %} + <div class="desc"> + {{ desc }} + </div> + {% endif %} <div class="devavatars" > Developers:<br> {% for i in dev_avatars %} @@ -21,6 +25,9 @@ {% endfor %} <div class="floatbarrier"> </div> </div> + <div class="instr"> + 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> </header> <table> <thead> |