Changeset 11764
- Timestamp:
- 16 Jul 2014, 05:34:32 (10 years ago)
- Location:
- main/kwarapoly.theme/trunk/kwarapoly/theme/browser
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kwarapoly.theme/trunk/kwarapoly/theme/browser/banner.py
r10866 r11764 19 19 20 20 class IBanner(form.Schema): 21 """A Banner which will be displayed in the Gallery Container21 """A Banner element which will be displayed in the Partners Banner 22 22 """ 23 title = schema.TextLine( title=_(u"Title"), required=True ) 24 picture = NamedImage(title=_(u" Slide Image"), description=_(u"Please upload an image"), required=False)23 title = schema.TextLine( title=_(u"Title"), required=True ) 24 picture = NamedImage(title=_(u"Banner Image (Partners Banner)"), description=_(u"Please upload an image"), required=False) 25 25 link = schema.TextLine(title=_(u"Link"), required=False) 26 26 -
main/kwarapoly.theme/trunk/kwarapoly/theme/browser/featured.py
r10866 r11764 19 19 20 20 class IFeatured(form.Schema): 21 """A Banner which will be displayed in the Gallery Container21 """A Featured box which will be displayed in the Featured Gallery 22 22 """ 23 23 title = schema.TextLine( title=_(u"Title"), required=True ) 24 headline = schema.TextLine( title=_(u"Headline Text"), required=True )25 picture = NamedImage(title=_(u" Banner"), description=_(u"Please upload an image"), required=False)24 headline = schema.TextLine( title=_(u"Headline"), required=True ) 25 picture = NamedImage(title=_(u"Featured Box Image"), description=_(u"Please upload an image"), required=False) 26 26 text = schema.TextLine( title=_(u"Text"), required=False) 27 27 link = schema.TextLine(title=_(u"Link"), required=False) -
main/kwarapoly.theme/trunk/kwarapoly/theme/browser/slide.py
r10866 r11764 19 19 20 20 class ISlide(form.Schema): 21 """A Banner which will be displayed in the Gallery Container21 """A Slide element which will be displayed in the Slide Show 22 22 """ 23 23 title = schema.TextLine( title=_(u"Title"), required=True ) 24 picture = NamedImage(title=_(u"Slide Image"), description=_(u"Please upload an image"), required=False)24 picture = NamedImage(title=_(u"Slide Show Image"), description=_(u"Please upload an image"), required=False) 25 25 text = RichText( title=_(u"Text"), required=False) 26 26 link = schema.TextLine(title=_(u"Link"), required=False)
Note: See TracChangeset for help on using the changeset viewer.