{% load i18n %} {% load sentry_helpers %}
{% if frame.filename %}
{% if frame.is_url %}
{% endif %}
{{ frame.filename }}
{% if frame.sourcemap %}
{{ frame.module }}
{% endif %}
{% if frame.function %}
{% if frame.filename or frame.module %}in {% endif %}{{ frame.function }}
{% endif %}
{% if not frame.context and not frame.lineno|is_none %}
at line {{ frame.lineno }}{% if not frame.colno|is_none %}:{{ frame.colno }}{% endif %}
{% endif %}
{% if system_frames and frame.in_app %}
(application)
{% endif %}