web/views/ibreadcrumbs.py
branchtls-sprint
changeset 742 99115e029dca
parent 731 ac4a94e50b60
child 984 536e421b082b
equal deleted inserted replaced
739:39721e56b56d 742:99115e029dca
    26 class BreadCrumbEntityVComponent(EntityVComponent):
    26 class BreadCrumbEntityVComponent(EntityVComponent):
    27     id = 'breadcrumbs'
    27     id = 'breadcrumbs'
    28     # register msg not generated since no entity implements IPrevNext in cubicweb itself
    28     # register msg not generated since no entity implements IPrevNext in cubicweb itself
    29     title = _('contentnavigation_breadcrumbs')
    29     title = _('contentnavigation_breadcrumbs')
    30     help = _('contentnavigation_breadcrumbs_description')
    30     help = _('contentnavigation_breadcrumbs_description')
    31     __selectors__ = (one_line_rset, match_context_prop, implements(IBreadCrumbs))
    31     __select__ = (one_line_rset() & match_context_prop() & implements(IBreadCrumbs))
    32     context = 'navtop'
    32     context = 'navtop'
    33     order = 5
    33     order = 5
    34     visible = False
    34     visible = False
    35     separator = u' > '
    35     separator = u' > '
    36 
    36