How to disable recaptcha after user is authenticated?
I'm using recaptcha so anonymous users can ask a question without the need to log in. It works nicely. But I want to disable recaptcha when the user is authenticated. It obviously doesn't work just to omit the form with request.user.is_authenticated()
Edit: Updated text to make it more clear.
Comments
In which part would you like to avoid recaptcha when logged in?
On the ask-page. Where the user asks a question. (Anonymous users must use recaptcha to ask a question)
Found out that as long as the user is "watched", recaptcha is required.