https://docs.djangoproject.com/en/3.0/ref/templates/builtins/#url 1. template html
<a href="{% url 'profile' user_id=user.id %}">User</a>

 

2. urls.py
path("accounts/profile/<int:user_id>/", UserUpdateView.as_view(), name="profile"),

 

3. views
class UserUpdateView(UpdateView):
    form_class = UserChangeForm
    template_name = "registration/profile.html"
    success_url = reverse_lazy("profile_done")
    
    def get_object(self, queryset=None):
        return User.objects.get(id=self.kwargs["user_id"])


    # 이렇게 파라메터를 template tag url에서 던질수 있다.
    # 위 예제는 예제일뿐 사용자 정보는 파라메터 없이 session정보로 가져올수 있다.
    def get_object(self, queryset=None):
        return User.objects.get(id=self.request.user.id)