improve placeholder on login template
This commit is contained in:
7
passbook/lib/utils/ui.py
Normal file
7
passbook/lib/utils/ui.py
Normal file
@ -0,0 +1,7 @@
|
||||
"""passbook UI utils"""
|
||||
|
||||
def human_list(_list) -> str:
|
||||
"""Convert a list of items into 'a, b or c'"""
|
||||
last_item = _list.pop()
|
||||
result = ', '.join(_list)
|
||||
return '%s or %s' % (result, last_item)
|
Reference in New Issue
Block a user