How To Show User Profile To Everyone By Link! in Django
问题 How To Show User Profile To Everyone By Link! in Django I Want To Show User Profile To Everyone for-example if someone type this in browser domain.com/profile/1 Then Our First User Profile Want To Show But it's showing blank It's showing when user login but we need to show to everyone Here is my detail.html {% extends 'base.html' %} {% block body_block %} <h1 class="posttitle">{{user.username}}</h1> {% endblock %} Here is my Views.py def profile_detail(request,pk): model = get_object_or_404