mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
| {% include 'emails.header-html' %}
 | |
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
 | |
|     Firefly III v{{ version }} ran into an error: <span style="font-family: monospace;">{{ errorMessage }}</span>
 | |
| </p>
 | |
| 
 | |
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
 | |
|     The error was of type "{{ class }}".
 | |
| </p>
 | |
| 
 | |
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
 | |
|     The error occured on/at: {{ time }}.
 | |
| </p>
 | |
| 
 | |
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
 | |
|     This error occured in file <span style="font-family: monospace;">{{ file }}</span> on line {{ line }} with code {{ code }}.
 | |
| </p>
 | |
| 
 | |
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
 | |
|     {% if loggedIn %}
 | |
|         The error was encountered by user #{{ user.id }}, <a href="mailto:{{ user.email }}">{{ user.email }}</a>.
 | |
|     {% else %}
 | |
|         There was no user logged in for this error or no user was detected.
 | |
|     {% endif %}
 | |
| </p>
 | |
| 
 | |
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
 | |
|     The IP address related to this error is: {{ ip }}<br />
 | |
|     URL is: {{ url }}<br>
 | |
|     User agent: {{ userAgent }}
 | |
| </p>
 | |
| 
 | |
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
 | |
|     The full stacktrace is below. If you think this is a bug in Firefly III, you
 | |
|     can forward this message to
 | |
|     <a href="mailto:james@firefly-iii.org?subject=BUG!">james@firefly-iii.org</a>.
 | |
|     This can help fix the bug you just encountered.
 | |
| </p>
 | |
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
 | |
|     If you prefer, you can also open a new issue on <a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a>.
 | |
| </p>
 | |
| 
 | |
| <p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;font-size:13px;">
 | |
|     The full stacktrace is below:</p>
 | |
| <p style="font-family: monospace;font-size:11px;color:#aaa">
 | |
|     {{ stackTrace|nl2br }}
 | |
| </p>
 | |
| {% include 'emails.footer-html' %}
 |