Total Complexity | 1 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | # -*- coding: utf-8 -*- |
||
2 | |||
3 | from bika.lims.interfaces import IContact |
||
4 | from plone.indexer import indexer |
||
5 | |||
6 | |||
7 | @indexer(IContact) |
||
8 | def sortable_title(instance): |
||
9 | return instance.getFullname().lower() |
||
10 |