Context data security risk?

Hello, everyone,
I write some (sensitive) data in my view in the context (get_context_data) - but I don’t display it in my template. I only do this because it is sometimes easier and less complicated to add an entire query set than individual objects.

Now I’ve asked myself whether this could represent a security gap.
Can anyone tell me if the context data is somehow available to the client if I don’t explicitly display it?

No, there’s no risk there. Rendering a template is something that happens entirely in the server.