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
- 운영체제론
- 후기
- Ubuntu 20.04
- 8기
- id # tr # 환경변수
- 부스트캠프
- 웹/모바일
- 네이버
- 네이버 부스트 코스
- 백준 #baekjoon # 2563
- Virtual Box 7.0.6
- 보기 편하라고 만든
Archives
- Today
- Total
목록2023/10/31 (1)
Miner
DAY 12
10/31 파이썬 장고 프레임워크를 사용해서 API 서버 만들기(2) 1. 뷰(Views) 와 템플릿(Templates) poll/views.py from .models import * from django.shortcuts import render def index(request): latest_question_list = Question.objects.order_by('-pub_date')[:5] context = {'first_question': latest_question_list[0]} return render(request, 'polls/index.html', context) templates/poll/index.html {{first question}} 2. 템플릿에서 제어문 사용하기 tem..
데브코스
2023. 10. 31. 18:38