일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 최소스패닝트리
- 프로그래머스
- MyPlaylist
- 함밥
- DFS
- Bellman-Ford
- django
- 장고
- 파이썬
- BFS
- minimum spanning tree
- 백트래킹
- Kruskal
- programmers
- SQL
- B대면노래방
- 소프트웨어공학
- 마라마라빔
- 코드트리
- DP
- 모각코
- 백준
- 실습
- 종합설계
- 동적계획법
- codetree
- 데이터베이스
- 그리디알고리즘
- Planned
- 알고리즘
Archives
- Today
- Total
Leta Learns
Planned | 220522 본문
#스테이징한 내용 확인 (git)
$ git diff --staged
#formset update
도무지 모르겠다 이말이에요
일단 아래 링크 참고하면서 수정해보는 중..
https://www.generacodice.com/en/articolo/4093226/insert-or-update-data-with-django-formsets
실패하였습니다.
#각각 form에 위/경도 추가
from django import forms
from django.forms import modelformset_factory
from .models import Travel, Place, Lodging
class TravelModelForm(forms.ModelForm):
class Meta:
model = Travel
fields = (
"name",
"start_date",
"end_date",
"color",
"latitude",
"longitude",
)
labels = {
"name": "여행지 name",
"start_date": "여행지 start_date",
"end_date": "여행지 end_date",
"color": "여행지 color",
"latitude": "여행지 위도",
"longitude": "여행지 경도",
}
class LodgingModelForm(forms.ModelForm):
class Meta:
model = Lodging
fields = (
"name",
"latitude",
"longitude",
)
labels = {
"name": "숙소 name",
"latitude": "숙소 위도",
"longitude": "숙소 경도",
}
PlaceFormset = modelformset_factory(
Place,
fields=(
"name",
"latitude",
"longitude",
), extra=1)
'HUFS > 종합설계 (캡스톤디자인)' 카테고리의 다른 글
Planned | 220526 (0) | 2022.05.26 |
---|---|
Planned | 220525 (0) | 2022.05.26 |
Planned | 220518 (0) | 2022.05.19 |
Planned | 220517 (0) | 2022.05.17 |
Planned | 220516 (0) | 2022.05.16 |
Comments