| Conditions | 1 |
| Total Lines | 19 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | # -*- coding: utf-8 -*- |
||
| 24 | def get_labcontact_columns(): |
||
| 25 | """Returns the default columns for the reference dropdown |
||
| 26 | """ |
||
| 27 | return [ |
||
| 28 | { |
||
| 29 | "name": "getFullname", |
||
| 30 | "width": "40", |
||
| 31 | "align": "left", |
||
| 32 | "label": _(u"Name"), |
||
| 33 | }, { |
||
| 34 | "name": "getEmailAddress", |
||
| 35 | "width": "40", |
||
| 36 | "align": "left", |
||
| 37 | "label": _(u"Email"), |
||
| 38 | }, { |
||
| 39 | "name": "getJobTitle", |
||
| 40 | "width": "40", |
||
| 41 | "align": "left", |
||
| 42 | "label": _(u"Job Title"), |
||
| 43 | }, |
||
| 45 |