Filter for maths in template
Project description
=====
Django Template Maths
=====
Django Template Maths is a simple filter for execute maths in template
Quick start
-----------
1. Add "django_template_maths" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [
...
'django_template_maths',
]
Example usage
-------------
```html
{% load django_template_maths %}
{{ 10|add:5 }} # print 15
{{ 10|sub:5 }} # print 5
{{ 10|div:5 }} # print 2
{{ 10|mul:5 }} # print 50
{{ 10|mod:5 }} # print 0
{{ 10|exp:5 }} # print 100000
{{ 10|flr:5 }} # print 2
{{ 10|sqr }} # 3.1622776601683795
{{ 10|add:5|add_decimal:2 }} # print 15.00
{{ 1000|add:5|add_decimal:2|separator:'comma' }} # print 1,005.00
{{ 1000|add:5|add_decimal:2|separator:'dot' }} # print 1.005,00
{{ 1000|remove_decimal|separator:'dot' }} # print 1.005
{{ 50|percent_of_number:500 }} # print 10,0
```
Django Template Maths
=====
Django Template Maths is a simple filter for execute maths in template
Quick start
-----------
1. Add "django_template_maths" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [
...
'django_template_maths',
]
Example usage
-------------
```html
{% load django_template_maths %}
{{ 10|add:5 }} # print 15
{{ 10|sub:5 }} # print 5
{{ 10|div:5 }} # print 2
{{ 10|mul:5 }} # print 50
{{ 10|mod:5 }} # print 0
{{ 10|exp:5 }} # print 100000
{{ 10|flr:5 }} # print 2
{{ 10|sqr }} # 3.1622776601683795
{{ 10|add:5|add_decimal:2 }} # print 15.00
{{ 1000|add:5|add_decimal:2|separator:'comma' }} # print 1,005.00
{{ 1000|add:5|add_decimal:2|separator:'dot' }} # print 1.005,00
{{ 1000|remove_decimal|separator:'dot' }} # print 1.005
{{ 50|percent_of_number:500 }} # print 10,0
```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-template-maths-0.2.0.tar.gz
.
File metadata
- Download URL: django-template-maths-0.2.0.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.10.0 pkginfo/1.2.1 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19847ca95ec3eb4e01f3511009226293d10f3e08755dfed806038037dc6acbf8 |
|
MD5 | 4fbecb6053b08e682ca8b79c867b80cb |
|
BLAKE2b-256 | f32cf2b5362d9cd2a3a267f284d1f331d803a964f51c3a3394024916c4a44955 |