Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 인하대학교
- 놀이동산의슈퍼컴퓨터를작동시켜라
- 프로그래머스
- 우분투비트확인
- 서버로그
- 봉사활동
- 개발자회고
- 쇠막대기
- 타코트론
- 개발자를위한파이썬
- 심플소프트웨어
- tacotron
- 결과를얻는법
- 로그남기기
- machinelearning
- jaypark.dating
- 노트북덮개
- texttospeech
- intell
- 인하멘토링
- 2019회고
- 인천남중
- Xangle
- 나는리뷰어다
- graphicdriver
- CrossAngle
- 프로그라피
- 신영준
- 서구동구예비군훈련장
- 한빛미디어
Archives
- Today
- Total
목록Django/Django - 인증편 (19)
jc.jang
3강 장고 유저 프로필 꾸미기
주제 장고에서 유저 프로필을 구현하는 방법 노트 2강에서 accounts app을 만들었다고 가정하고 아래를 수행한다. accounts/urls.py urlpatterns = [ # ..., path('profile/', views.profile, name='profile'), # ..., ] accounts/views.py from django.shortcuts import render from django.contrib.auth.decorators import login_required @login_required def profile(request): return render(request, 'accounts/profile.html') login_required 데코레이터는 해당 뷰 요청시 로그인 ..
Django/Django - 인증편
2019. 8. 28. 15:08