---
title: "User Feedback"
description: "Learn more about collecting user feedback when an event occurs. Sentry pairs the feedback with the original event, giving you additional insight into issues."
url: https://docs.sentry.io/platforms/python/user-feedback/
---

# Set Up User Feedback | Sentry for Python

When a user experiences an error, Sentry provides the ability to collect additional feedback. You can collect feedback according to the method supported by the SDK.

## [Crash-Report Modal](https://docs.sentry.io/platforms/python/user-feedback.md#crash-report-modal)

Our embeddable, JavaScript-based, Crash-Report modal is useful when you would typically render a plain error page (the classic `500.html`) on your website.

To collect feedback, the Crash-Report modal requests and collects the user's name, email address, and a description of what occurred. When feedback is provided, Sentry pairs the feedback with the original event, giving you additional insights into issues.

The screenshot below provides an example of the Crash-Report modal, though yours may differ depending on your customization:

### [Integration](https://docs.sentry.io/platforms/python/user-feedback.md#integration)

The modal authenticates with your public DSN, then passes in the Event ID that was generated on your backend.

Retrieve the `last_event_id` on your server and pass it to the HTML template to use during template rendering (this example uses Flask but the principle is the same on every framework):

```python
import sentry_sdk
from flask import render_template

@app.errorhandler(500)
def server_error_handler(error):
    event_id=sentry_sdk.last_event_id()
    return render_template("500.html", sentry_event_id=event_id), 500
```

Make sure you've got the JavaScript SDK available:

```html
<script
  src="https://browser.sentry-cdn.com/10.48.0/bundle.min.js"
  integrity="sha384-YZaJWnCk9RrFZW/2q6MPHXRwQgjLK3j3/UKrduKYe3mnHTAKDY93DFX8zvVWBt8u"
  crossorigin="anonymous"
></script>
```

And the code that brings up the dialog in your template:

```html
{% if sentry_event_id %}
<script>
  Sentry.init({ dsn: "___PUBLIC_DSN___" });
  Sentry.showReportDialog({ eventId: "{{ sentry_event_id }}" });
</script>
{% endif %}
```

## Pages in this section

- [Configuration](https://docs.sentry.io/platforms/python/user-feedback/configuration.md)
