1👍
✅
According to the configured url:
url(r"^reviews/(?P<username>\w+)/$", show_reviews)
you are capturing username
from the URL. Your view should have it as an argument:
def show_reviews(request, username):
...
Source:stackexchange.com