django template 연산 안될 때 - mathfilters 설정
18 Jun 2019 | django python python-lib[1] 라이브러리 받기
pip install django-mathfilters
설치
[2] settings.py 추가
mathfilters를 apps에 추가해줘야한다
INSTALLED_APPS = [
...
'mathfilters',
...
]
[3] html파일에 load해주기
math 연산을 사용할 html 파일에 load를 해줘야 한다.
[4] 간단한 연산 코드
<!-- 더하기 -->
10
<!-- 빼기 -->
10
<!-- 곱하기 -->
10
<!-- 나누기 -->
10