2021-01-31 20:26:24 +01:00
|
|
|
{% include 'v1.emails.header-text' %}
|
2020-05-27 09:34:52 +02:00
|
|
|
{{ trans('email.error_intro', { version: version, errorMessage: errorMessage })|striptags|raw }}
|
2016-02-24 20:42:05 +01:00
|
|
|
|
2020-05-26 12:01:39 +02:00
|
|
|
{{ trans('email.error_type', {class: class })|raw }}
|
2016-02-24 20:42:05 +01:00
|
|
|
|
2020-05-26 12:01:39 +02:00
|
|
|
{{ trans('email.error_timestamp', {time: time })|raw }}
|
2016-02-10 15:18:13 +01:00
|
|
|
|
2020-05-27 09:34:52 +02:00
|
|
|
{{ trans('email.error_location', { file: file , line: line, code: code })|striptags|raw }}
|
2016-02-10 15:18:13 +01:00
|
|
|
|
2016-02-11 12:54:16 +01:00
|
|
|
{% if loggedIn %}
|
2020-05-27 09:34:52 +02:00
|
|
|
{{ trans('email.error_user', { id: user.id, email: user.email })|striptags|raw }}
|
2016-08-27 03:50:35 +02:00
|
|
|
{% else %}
|
2020-05-26 12:01:39 +02:00
|
|
|
{{ trans('email.error_no_user')|raw }}
|
2016-02-11 12:54:16 +01:00
|
|
|
{% endif %}
|
|
|
|
|
2020-05-27 09:34:52 +02:00
|
|
|
{{ trans('email.error_ip', { ip: ip }) }}
|
|
|
|
{{ trans('email.error_url', {url :url}) }}
|
|
|
|
{{ trans('email.error_user_agent', {userAgent: userAgent } ) }}
|
2016-02-11 14:13:23 +01:00
|
|
|
|
2020-05-27 09:34:52 +02:00
|
|
|
{{ trans('email.error_stacktrace')|striptags|raw }}
|
2016-02-10 15:18:13 +01:00
|
|
|
|
2020-05-27 09:34:52 +02:00
|
|
|
{{ trans('email.error_github_text' )|raw }}
|
2016-02-10 15:18:13 +01:00
|
|
|
|
2020-05-26 12:01:39 +02:00
|
|
|
{{ trans('email.error_stacktrace_below')|raw }}
|
2016-02-10 15:18:13 +01:00
|
|
|
|
2020-05-27 09:34:52 +02:00
|
|
|
{{ stackTrace|raw }}
|
2021-01-31 20:26:24 +01:00
|
|
|
{% include 'v1.emails.footer-text' %}
|