Tags
- SQL
- DB
- N:1
- delete
- 스택
- outer join
- ORM
- drf
- migrations
- Tree
- Vue
- 트리
- 완전검색
- Django
- create
- update
- Queue
- 쟝고
- 통계학
- stack
- M:N
- 백트래킹
- 그리디
- Article & User
- 뷰
- 큐
- regexp
- count
- distinct
- 이진트리
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Notice
Recent Posts
Link
목록프로필 (1)
데이터 분석 기술 블로그

프로필 페이지각 회원의 개인 프로필 페이지에 팔로우 기능을 구현하기 위해 프로필 페이지를 먼저 구현해 봅시다.url을 작성합니다.# accounts/urls.pyurlpatterns = [ ... path('profile//', views.profile, name='profile'),]view 함수를 작성합니다.# accounts/views.pyfrom django.contrib.auth import get_user_modeldef profile(request, username): User = get_user_model() person = User.objects.get(username=username) context = { 'person': person, } ..
SW/DB
2024. 5. 5. 20:53