Extends plone collection portlet in order to allow assigning different views for each newly created portlet through its Edit form = Project Description = == Supported Plone Version == Plone 4.2[[BR]] Plone 4.1[[BR]] Plone 4.0[[BR]] Plone 3.x == Links == GitHub- https://github.com/collective/collective.embedly [[BR]] Pypi - https://pypi.python.org/pypi/collective.portlet.ngcollection == Introduction == This package provides portlet which extends plone collection portlet in order to allow assigning different views for each newly created portlet through its edit form. Plone portlets provide us with portletRenderer directive which in general is really usefull, but it's not an option because it overrides portlet renderer globally thus allowing to have only one template at a time. Thus to avoid having some odd conditions in your collection portlet's template NGCollection extends standard plone collection portlet with a template field where you can select template to use from available templates. Apart from the 'template' field NGCollection portlet also adds 'show_more_label' field. This field is here to override default collection's portlet 'More...' link text with some custom one entered by user. == Portlet Templates == In order to register new alternative templates for your portlet this package provides portletTemplates directive: {{{ }}} In this example we register templates contained inside alternative_templates folder as alternative templates available for path.to.some.portlet.assignment. Interface portlet. Thus you'll be able to select one of them on portlet edit form via Plone interface. You can register more than one directory for your portlet. This idea with registering directories with custom templates was highly inspired by z3c.jbot package. == Contributors == Vitaliy Podoba[[BR]] Roman Kozlovskyi[[BR]] Volodymyr Cherepanyak