2016-11-22 21:21:11 +01:00
|
|
|
{% include 'emails.header-text' %}
|
2020-05-26 12:01:39 +02:00
|
|
|
{{ trans('email.error_intro', { version: version })|raw }} {{ errorMessage }}.
|
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-26 12:01:39 +02:00
|
|
|
{{ trans('email.error_location', { file: file , line: line, code: code })|raw }}
|
2016-02-10 15:18:13 +01:00
|
|
|
|
2016-02-11 12:54:16 +01:00
|
|
|
{% if loggedIn %}
|
2020-05-26 12:01:39 +02:00
|
|
|
{{ trans('email.error_user', { id: user.id, email: user.email })|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-26 12:01:39 +02:00
|
|
|
{{ trans('email.error_ip')|raw }} {{ ip }}
|
|
|
|
|
{{ trans('email.error_url')|raw }} {{ url }}
|
|
|
|
|
{{ trans('email.error_user_agent')|raw }} {{ userAgent }}
|
2016-02-11 14:13:23 +01:00
|
|
|
|
2020-05-26 12:01:39 +02:00
|
|
|
{{ trans('email.error_stacktrace', { email: 'james@firefly-iii.org' })|raw }}
|
2016-02-10 15:18:13 +01:00
|
|
|
|
2020-05-26 12:01:39 +02:00
|
|
|
{{ trans('email.error_github', { link: 'https://github.com/firefly-iii/firefly-iii/issues' })|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
|
|
|
|
2016-12-22 16:55:27 +01:00
|
|
|
{{ stackTrace }}
|
2016-12-22 19:42:45 +01:00
|
|
|
{% include 'emails.footer-text' %}
|