250x250
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
- 지연로딩
- 비관적락
- querydsl
- shared lock
- 다대일
- execute
- SQL프로그래밍
- 낙관적락
- BOJ
- 즉시로딩
- 데코레이터
- 스프링 폼
- 동적sql
- 이진탐색
- exclusive lock
- 다대다
- JPQL
- dfs
- 연결리스트
- fetch
- PS
- 연관관계
- 스토어드 프로시저
- 백트래킹
- eager
- FetchType
- 힙
- 유니크제약조건
- CHECK OPTION
- 일대다
Archives
- Today
- Total
흰 스타렉스에서 내가 내리지
pagination 본문
728x90
views.py
from django.core.paginator import Paginator
def home(request):
# posts = Post.objects.all()
posts = Post.objects.filter().order_by('-date')
paginator = Paginator(posts, 5)
pagenum = request.GET.get('page') # url 주소 상의 쿼리문
posts = paginator.get_page(pagenum)
return render(request, 'index.html', {'posts':posts})
index.html
<!-- Pagination -->
{% if posts.has_previous %}
<a href="?page=1">첫 페이지</a>
<a href="?page={{posts.previous_page_number}}">이전 페이지</a>
{% endif %}
<span>{{posts.number}}</span>
<span>
/
</span>
<span>{{posts.paginator.num_pages}}</span>
{% if posts.has_next %}
<a href="?page={{posts.next_page_number}}">다음 페이지</a>
<a href="?page={{posts.paginator.num_pages}}">마지막 페이지</a>
{% endif %}
'Django' 카테고리의 다른 글
소셜 로그인 (0) | 2022.06.09 |
---|---|
django에서 민감한 데이터를 숨기는 일반적인 방법 (0) | 2022.06.09 |
회원가입, 로그인, 로그아웃 (0) | 2022.06.08 |
댓글 (0) | 2022.06.08 |
사용자가 media 를 업로드 할 수 있도록 (0) | 2022.06.08 |