diff options
author | Dan McGee <dan@archlinux.org> | 2013-07-13 09:51:33 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-07-13 09:51:33 -0500 |
commit | 845769e156520708acf65c8f3ec2756476202cc7 (patch) | |
tree | dab1391b39a7a8a79e9076c57a04dc309df1700b /templates | |
parent | 772a500534a508b5b9f88e2883c8dcb488c4b4d9 (diff) |
Show alternate email on mirror details page
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/mirrors/mirror_details.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/mirrors/mirror_details.html b/templates/mirrors/mirror_details.html index ccd6eb57..1c7f5633 100644 --- a/templates/mirrors/mirror_details.html +++ b/templates/mirrors/mirror_details.html @@ -49,6 +49,10 @@ <td>{% if mirror.admin_email %}<a href="mailto:{{ mirror.admin_email }}">{{ mirror.admin_email }}</a>{% else %}None{% endif %}</td> </tr> <tr> + <th>Alternate Email:</th> + <td>{% if mirror.alternate_email %}<a href="mailto:{{ mirror.alternate_email }}">{{ mirror.alternate_email }}</a>{% else %}None{% endif %}</td> + </tr> + <tr> <th>Notes:</th> <td>{{ mirror.notes|linebreaks }}</td> </tr> |