changeset 6308:8c2686505f72

templates: drop redundant 'Name' for Repository and Repository Group columns
author Mads Kiilerich <madski@unity3d.com>
date Thu, 10 Nov 2016 16:10:41 +0100
parents 39c7bbc36c42
children b75d11abd208
files kallithea/templates/index_base.html
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/index_base.html	Thu Nov 10 16:10:41 2016 +0100
+++ b/kallithea/templates/index_base.html	Thu Nov 10 16:10:41 2016 +0100
@@ -49,7 +49,7 @@
               <table id="groups_list">
                   <thead>
                       <tr>
-                          <th class="left">${_('Repository Group Name')}</th>
+                          <th class="left">${_('Repository Group')}</th>
                           <th class="left">${_('Description')}</th>
                           ##<th class="left">${_('Number of Repositories')}</th>
                       </tr>
@@ -92,7 +92,7 @@
                 data: data.records,
                 columns: [
                     {data: "raw_name", visible: false, searchable: false},
-                    {title: "${_('Repository Name')}", data: "name", orderData: 1, render: {
+                    {title: "${_('Repository')}", data: "name", orderData: 1, render: {
                         filter: function(data) {
                             return $(data).find(".dt_repo_name").text();
                         }