728x90
반응형
Django의 DateField를 context로 HTML로 넘겼을 때,
HTML의 type이 date인 input에서 받기 위해서는 표현방법 변환 필요
Django template에서 date filter tag로 형 변환
{{company.birth|date:'Y-m-d'}}
<input type="date" value="{{company.birth|date:'Y-m-d'}}">
728x90
반응형
'Python > Django' 카테고리의 다른 글
Django QuerySet, update objects (0) | 2023.02.26 |
---|---|
이미지 수정하기 # 로직 # Django (0) | 2023.02.25 |
Django admin: Register all models # Django admin page에 모든 모델 등록 (0) | 2023.02.19 |
Django not null CharField objects.create # not null 임에도 object가 생성되는 경우 # unpack # ** (0) | 2023.02.16 |
Django app 위치 변경 # + 생성 (0) | 2023.02.06 |