mirror of
https://github.com/ae-utbm/sith.git
synced 2025-04-04 19:00:27 +00:00
20 lines
627 B
Django/Jinja
20 lines
627 B
Django/Jinja
{% extends "core/base.jinja" %}
|
|
{% block head %}
|
|
{{ super() }}
|
|
{% if settings.EXTERNAL_RES %}
|
|
<script src="https://browser.sentry-cdn.com/4.0.6/bundle.min.js" crossorigin="anonymous"></script>
|
|
{% else %}
|
|
<script src="{{ static('core/js/sentry/bundle.min.js') }}" crossorigin="anonymous"></script>
|
|
{% endif %}
|
|
{% endblock head %}
|
|
|
|
{% block content %}
|
|
<h3>{% trans %}500, Server Error{% endtrans %}</h3>
|
|
{% if settings.SENTRY_DSN %}
|
|
<script>
|
|
Sentry.init({ dsn: '{{ request.sentry_dsn }}' });
|
|
Sentry.showReportDialog({ eventId: '{{ request.sentry_last_event_id() }}' })
|
|
</script>
|
|
{% endif %}
|
|
{% endblock content %}
|