${_("Enabled and Available Plugins")}
${_("Ordered Activated Plugins")}
${h.textarea('auth_plugins',cols=120,rows=20,class_="medium")}
${_('List of plugins, separated by commas.' '\nThe order of the plugins is also the order in which ' 'RhodeCode Enterprise will try to authenticate a user.')}
${_('Activate')} | ${_('Plugin Name')} | ${_('Documentation')} | ${_('Plugin ID')} | ${_('Enabled')} | %for plugin in available_plugins:
---|---|---|---|---|
${(_('activated') if plugin.get_id() in enabled_plugins else _('not active'))} | ${plugin.get_display_name()} | % if plugin.docs(): docs % endif | ${plugin.get_id()} | ${h.bool2icon(plugin.is_active(),show_at_false=False)} |