Files
firefly-iii/resources/views/v1/emails/error-text.twig

28 lines
898 B
Twig
Raw Normal View History

2016-11-22 21:21:11 +01:00
{% include 'emails.header-text' %}
{{ trans('email.error_intro', { version: version })|raw }} {{ errorMessage }}.
2016-02-24 20:42:05 +01:00
{{ trans('email.error_type', {class: class })|raw }}
2016-02-24 20:42:05 +01:00
{{ trans('email.error_timestamp', {time: time })|raw }}
2016-02-10 15:18:13 +01: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 %}
{{ trans('email.error_user', { id: user.id, email: user.email })|raw }}
{% else %}
{{ trans('email.error_no_user')|raw }}
2016-02-11 12:54:16 +01:00
{% endif %}
{{ 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
{{ trans('email.error_stacktrace', { email: 'james@firefly-iii.org' })|raw }}
2016-02-10 15:18:13 +01:00
{{ trans('email.error_github', { link: 'https://github.com/firefly-iii/firefly-iii/issues' })|raw }}
2016-02-10 15:18:13 +01:00
{{ trans('email.error_stacktrace_below')|raw }}
2016-02-10 15:18:13 +01:00
{{ stackTrace }}
{% include 'emails.footer-text' %}