Django Admin list_display에 custom link 추가
2021. 2. 11. 20:50ㆍ파이썬/Django
list_display = ['id','linkImage',]
def linkImage(self, obj) :
url = reverse('admin:ocr_trained_image_change', args=[obj.image])
return format_html("<a href='{}'>{}</a>",url,obj.image)
linkImage.short_description = 'Image'
list_display = ['id','popup_gantt','manager']
def popup_gantt(self, obj) :
return format_html("<a href='javascript:window.open(\"/gantt/gantt/{}\")'>{}</a>", obj.id,obj.name)
'파이썬 > Django' 카테고리의 다른 글
Django filter 특징 (0) | 2021.02.17 |
---|---|
Django Admin change_form.html에 버튼 추가 및 저장시 custom 작업 수행 (0) | 2021.02.12 |
Django DB에 이미지 저장 및 가져오기 (0) | 2021.02.11 |
tile cannot extend outside image (0) | 2021.02.11 |
Django Admin list_editable save 호출 함수 (0) | 2021.02.10 |