senrty: fix SENTRY_DSN in error page

This commit is contained in:
Antoine Bartuccio 2018-10-10 16:33:12 +02:00
parent f4122bbc37
commit f91ba25b25

View File

@ -12,7 +12,7 @@
<h3>{% trans %}500, Server Error{% endtrans %}</h3>
{% if settings.SENTRY_DSN %}
<script>
Sentry.init({ dsn: '{{ request.sentry_dsn }}' });
Sentry.init({ dsn: '{{ settings.SENTRY_DSN }}' });
Sentry.showReportDialog({ eventId: '{{ request.sentry_last_event_id() }}' })
</script>
{% endif %}