Tags
- drf
- migrations
- 큐
- Tree
- Article & User
- 이진트리
- 스택
- distinct
- update
- ORM
- DB
- regexp
- count
- M:N
- 백트래킹
- delete
- 통계학
- 완전검색
- outer join
- 그리디
- Vue
- create
- 뷰
- Queue
- stack
- 쟝고
- N:1
- 트리
- SQL
- Django
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Notice
Recent Posts
Link
목록프로필 (1)
데이터 분석 기술 블로그
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/SuAI7/btsHcUKqjjS/7DoZ3PPoZnG7YcstILPY8k/img.png)
프로필 페이지각 회원의 개인 프로필 페이지에 팔로우 기능을 구현하기 위해 프로필 페이지를 먼저 구현해 봅시다.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, } ..
DB
2024. 5. 5. 20:53