Posts by Gustavo Almeida • 24 points
2 posts
-
0
votes1
answer419
viewsA: Rounding up
import math valor = 4.6666 valor_arredondado = math.ceil(valor) print valor_arredondado # 5.0
-
0
votes1
answer40
viewsA: Problems with Custom Template Tags in Django 1.8.5
You could use custom context_processor. Thus, you will include in the general context, on all pages what you want. Create a new file in your app called for example context_processors.py In it write…