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
```
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
```
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
Close
Hashes for django-template-maths-0.0.5.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 303e15c4df59334d13fa55e7be8f77080d62380d15f7be7f170b9957650458d5 |
|
MD5 | b0f52bdd0807f4fc9ca24606d0c8dbce |
|
BLAKE2b-256 | 0e600241c9d605eaaf09658f1300f362f12a2b7a5915554e9097453f4a16c195 |