mmg rates set to 1.65p

also moved a default parameter to a plain ol' local variable to reduce ambiguity about whether it is overriden by any callers (it's not)
This commit is contained in:
Leo Hemsted
2016-07-06 16:03:00 +01:00
parent dfbd6610cb
commit aac3112274
3 changed files with 6 additions and 3 deletions

View File

@@ -34,7 +34,7 @@
{% if sms_chargeable %}
{{ big_number(
sms_chargeable,
'at {:.1f}p per message'.format(sms_rate * 100),
'at {:.2f}p per message'.format(sms_rate * 100),
smaller=True
) }}
{% endif %}