# HG changeset patch # User Marcin Kuzminski # Date 2018-02-15 19:26:44 # Node ID 74b83714a52be06369f071e954a431cbdf041e26 # Parent ebd41bed462a1c64c493c7111ded7fe36f9a913b integrations: removed button list as this was confusing users, and it has little value. diff --git a/rhodecode/templates/admin/integrations/list.mako b/rhodecode/templates/admin/integrations/list.mako --- a/rhodecode/templates/admin/integrations/list.mako +++ b/rhodecode/templates/admin/integrations/list.mako @@ -50,40 +50,6 @@
- <% - if c.repo: - home_url = request.route_path('repo_integrations_home', - repo_name=c.repo.repo_name) - elif c.repo_group: - home_url = request.route_path('repo_group_integrations_home', - repo_group_name=c.repo_group.group_name) - else: - home_url = request.route_path('global_integrations_home') - %> - - ${_('All')} - - %for integration_key, IntegrationType in c.available_integrations.items(): - % if not IntegrationType.is_dummy: - <% - if c.repo: - list_url = request.route_path('repo_integrations_list', - repo_name=c.repo.repo_name, - integration=integration_key) - elif c.repo_group: - list_url = request.route_path('repo_group_integrations_list', - repo_group_name=c.repo_group.group_name, - integration=integration_key) - else: - list_url = request.route_path('global_integrations_list', - integration=integration_key) - %> - - ${IntegrationType.display_name} - - % endif - %endfor <% integration_type = c.current_IntegrationType and c.current_IntegrationType.display_name or ''