diff --git a/dojo/templates/notifications/mail/product_type_added.tpl b/dojo/templates/notifications/mail/product_type_added.tpl index a229882a346..1f41b3e5a14 100644 --- a/dojo/templates/notifications/mail/product_type_added.tpl +++ b/dojo/templates/notifications/mail/product_type_added.tpl @@ -1,40 +1,57 @@ {% load i18n %} {% load navigation_tags %} {% load display_tags %} +{% url 'view_product_type' product_type.id as product_type_url %} + - - {% autoescape on %} -

- {% trans "Hello" %}, -

-

- {% blocktranslate trimmed prod_url=url|full_url %} - The new product type "{{ title }}" has been added. It can be viewed here: {{ title }} - {% endblocktranslate %} -

-
-
- {% trans "Kind regards" %},
-
- {% if system_settings.team_name %} - {{ system_settings.team_name }} - {% else %} - Defect Dojo - {% endif %} -

-
-
-

- {% url 'notifications' as notification_url %} - {% trans "You can manage your notification settings here" %}: {{ notification_url|full_url }} -

- {% if system_settings.disclaimer_notifications and system_settings.disclaimer_notifications.strip %} -
-
- {% trans "Disclaimer" %}
-

{{ system_settings.disclaimer_notifications }}

-
- {% endif %} - {% endautoescape %} - + + {% autoescape on %} +

+ {% trans "Hello" %}, +

+ +

+ {% blocktranslate trimmed with title=title prod_url=product_type_url|full_url %} + The new product type "{{ title }}" has been added. + It can be viewed here: {{ title }} + {% endblocktranslate %} +

+ +
+
+ + {% trans "Kind regards" %},
+
+ + {% if system_settings.team_name %} + {{ system_settings.team_name }} + {% else %} + Defect Dojo + {% endif %} + +

+
+
+

+ +

+ {% url 'notifications' as notification_url %} + {% trans "You can manage your notification settings here" %}: + {{ notification_url|full_url }} +

+ + {% if system_settings.disclaimer_notifications and system_settings.disclaimer_notifications.strip %} +
+
+ + {% trans "Disclaimer" %} + +
+

+ {{ system_settings.disclaimer_notifications }} +

+
+ {% endif %} + {% endautoescape %} +