| 4 |
from Products.PACDefault.config import * |
from Products.PACDefault.config import * |
| 5 |
|
|
| 6 |
schema = BaseSchema + Schema(( |
schema = BaseSchema + Schema(( |
| 7 |
|
StringField('title', |
| 8 |
|
required=1, |
| 9 |
|
searchable=1, |
| 10 |
|
default='', |
| 11 |
|
accessor='Title', |
| 12 |
|
widget=StringWidget(label_msgid="label_title", |
| 13 |
|
description_msgid="help_title", |
| 14 |
|
i18n_domain="plone"), |
| 15 |
|
), |
| 16 |
|
|
| 17 |
|
StringField("emailSubject", |
| 18 |
|
searchable=1, |
| 19 |
|
widget = StringWidget(label="Email Subject", |
| 20 |
|
description="This is used when the letter is sent as an email"), |
| 21 |
|
), |
| 22 |
|
|
| 23 |
StringField("emailSubject", |
StringField("emailSubject", |
| 24 |
searchable=1, |
searchable=1, |