diff options
Diffstat (limited to 'templates/email/default/contact.html')
-rw-r--r-- | templates/email/default/contact.html | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/templates/email/default/contact.html b/templates/email/default/contact.html index 8dc9f3af0..33c858dfb 100644 --- a/templates/email/default/contact.html +++ b/templates/email/default/contact.html @@ -16,7 +16,18 @@ INCLUDE '_email_top.html'; <table [% table_reset %]> <tr> <th style="[% contact_th_style %]">From</th> - <td style="[% contact_td_style %]">[% name %] <<a href="mailto:[% em | html %]">[% em | html %]</a>></td> + <td style="[% contact_td_style %]"> + [% name %] <<a href="mailto:[% em | html %]">[% em | html %]</a>> + [%~ IF user_admin_url %] + <small style="[% contact_admin_links_style %]"> + <a href="[% user_admin_url | html %]">Edit user</a> – + [%~ IF user_latest_report_admin_url %] + <a href="[% user_latest_report_admin_url | html %]">Edit latest report</a> – + [%~ END %] + <a href="[% user_reports_admin_url | html %]">Show all reports</a> + </small> + [%~ END %] + </td> </tr> </table> </th> |