]> asedeno.scripts.mit.edu Git - bluechips.git/blob - bluechips/lib/helpers.py
4bb357663737b58c3dc15477f3fa77a8629e0529
[bluechips.git] / bluechips / lib / helpers.py
1 """Helper functions
2
3 Consists of functions to typically be used within templates, but also
4 available to Controllers. This module is available to both as 'h'.
5 """
6 from routes import url_for, redirect_to
7 from webhelpers.html import escape, literal, url_escape
8 from webhelpers.html.tags import *
9
10 from webhelpers.pylonslib import Flash as _Flash
11
12 from decimal import Decimal
13
14 def bluechips():
15     return '<span class="bluechips">BlueChips</span>'
16
17 def round_currency(value):
18     return Decimal(value).quantize(Decimal('0.01'))
19
20 flash = _Flash()