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 | |
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')
-rw-r--r-- | templates/bug.html | 4 | ||||
-rw-r--r-- | templates/buglist.html | 9 |
2 files changed, 11 insertions, 2 deletions
diff --git a/templates/bug.html b/templates/bug.html index 2173268..9bb039a 100644 --- a/templates/bug.html +++ b/templates/bug.html @@ -13,7 +13,9 @@ <h3 class="subject" > {{ replies[0]["Subject"]|e }} </h3> - Send replies to <a href="mailto:{{ bug.id }}@{{ DOMAIN }}" >{{ bug.id }}@{{ DOMAIN }}</a> or using the <a href="#ReplyForm">Form below.</a> + <div class="instr"> + Send replies to <a href="mailto:{{ bug.id }}@{{ DOMAIN }}" >{{ bug.id }}@{{ DOMAIN }}</a> or using the <a href="#ReplyForm">Form below.</a> + </div> </header> {% for i in replies %} <div class="container"> 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> |