mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-15 10:22:43 +01:00
11 lines
250 B
Django/Jinja
11 lines
250 B
Django/Jinja
<!-- Sentry JS SDK 2.1.+ required -->
|
|
<script src="https://cdn.ravenjs.com/2.3.0/raven.min.js"></script>
|
|
|
|
{% if event_id %}
|
|
<script>
|
|
Raven.showReportDialog({
|
|
eventId: '{{ event_id }}',
|
|
dsn: '{{ public_dsn }}'
|
|
});
|
|
</script>
|
|
{% endif %} |