Skip to content
Snippets Groups Projects
Commit a456468a authored by shirenn's avatar shirenn 🌊
Browse files

Pretty print feature

Prints the money of each user perfectly
parent 2a2e78f8
No related branches found
No related tags found
1 merge request!4Transaction history
Pipeline #7661 passed with stage
in 2 minutes and 52 seconds
from django import template
def pretty_money(value):
if value%100 == 0:
return str(value//100) + ''
else:
return str(value//100) + '' + str(value%100)
register = template.Library()
register.filter('pretty_money', pretty_money)
{% extends "base.html" %}
{% load i18n static %}
{% load i18n static pretty_money %}
{% block content %}
<h3>Compte n° {{ object.pk }}</h3>
......@@ -20,7 +20,7 @@
<dt class="col-6 col-md-3">{% trans 'address'|capfirst %}</dt>
<dd class="col-6 col-md-3">{{ object.address }}</dd>
<dt class="col-6 col-md-3">{% trans 'balance'|capfirst %}</dt>
<dd class="col-6 col-md-3">{{ object.user.note.balance }}</dd>
<dd class="col-6 col-md-3">{{ object.user.note.balance | pretty_money }}</dd>
</dl>
<a href="{% url "password_change" %}">{% trans 'Change password' %}</a>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment