본문으로 바로가기

dgango template 에서 숫자에 콤마 찍기

category Python 2019. 10. 29. 17:53

setting.py

INSTALLED_APPS = [

...

'django.contrib.humanize',

...

]

 

template

{% load humanize %}

 

{% object.name|intcomma %}

'Python' 카테고리의 다른 글

django 설치 (SentOS, python3.6)  (0) 2019.11.22
django 이메일 보내기 (smtplib)  (0) 2019.11.14
python 정규식  (0) 2019.10.29
python 날짜  (0) 2019.10.29
json.dumps 한글 깨질때  (0) 2019.10.28