You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
317 B
Python
16 lines
317 B
Python
3 years ago
|
from flask import Blueprint
|
||
|
from arrow import get as arrow_get
|
||
|
|
||
|
|
||
|
bp = Blueprint('filters', 'filters')
|
||
|
|
||
|
@bp.app_template_filter('shorten_address')
|
||
|
def shorten_address(a):
|
||
|
_p = a[0:4]
|
||
|
_s = a[-4:]
|
||
|
return f'{_p}...{_s}'
|
||
|
|
||
|
@bp.app_template_filter('humanize')
|
||
|
def humanize(d):
|
||
|
return arrow_get(d).humanize()
|