src/pyams_content/component/paragraph/header.py
changeset 408 e1d40ed27899
parent 407 0ef5de2d5674
child 420 edf9ce1b3f69
equal deleted inserted replaced
407:0ef5de2d5674 408:e1d40ed27899
    47 
    47 
    48     header = FieldProperty(IHeaderParagraph['header'])
    48     header = FieldProperty(IHeaderParagraph['header'])
    49 
    49 
    50 
    50 
    51 @utility_config(name=HEADER_PARAGRAPH_TYPE, provides=IParagraphFactory)
    51 @utility_config(name=HEADER_PARAGRAPH_TYPE, provides=IParagraphFactory)
    52 class HTMLParagraphFactory(BaseParagraphFactory):
    52 class HeaderParagraphFactory(BaseParagraphFactory):
    53     """HTML paragraph factory"""
    53     """Header paragraph factory"""
    54 
    54 
    55     name = _("Header paragraph")
    55     name = _("Header paragraph")
    56     content_type = HeaderParagraph
    56     content_type = HeaderParagraph
    57 
    57 
    58 
    58