mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-03 20:14:31 +00:00
28 lines
898 B
Twig
28 lines
898 B
Twig
{% include 'emails.header-text' %}
|
|
{{ trans('email.error_intro', { version: version })|raw }} {{ errorMessage }}.
|
|
|
|
{{ trans('email.error_type', {class: class })|raw }}
|
|
|
|
{{ trans('email.error_timestamp', {time: time })|raw }}
|
|
|
|
{{ trans('email.error_location', { file: file , line: line, code: code })|raw }}
|
|
|
|
{% if loggedIn %}
|
|
{{ trans('email.error_user', { id: user.id, email: user.email })|raw }}
|
|
{% else %}
|
|
{{ trans('email.error_no_user')|raw }}
|
|
{% endif %}
|
|
|
|
{{ trans('email.error_ip')|raw }} {{ ip }}
|
|
{{ trans('email.error_url')|raw }} {{ url }}
|
|
{{ trans('email.error_user_agent')|raw }} {{ userAgent }}
|
|
|
|
{{ trans('email.error_stacktrace', { email: 'james@firefly-iii.org' })|raw }}
|
|
|
|
{{ trans('email.error_github', { link: 'https://github.com/firefly-iii/firefly-iii/issues' })|raw }}
|
|
|
|
{{ trans('email.error_stacktrace_below')|raw }}
|
|
|
|
{{ stackTrace }}
|
|
{% include 'emails.footer-text' %}
|