diff options
-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> |