[Answered ]-Should I be using GET parameters in URLs inside templates? (django.contrib.auth)

2👍

Yes, this is fine. GET parameters are not part of the URL for the purposes of URL resolving or reversing, so this is really the only way to do it.

Leave a comment