@@ -17,7 +17,7 @@ <h2>Git Access Control</h2>
1717 < div ng-if ="settings.github==true ">
1818 < div ng-show ="tableConfig.github.initialized ">
1919 < div ng-if ="tableConfig.github.items.length!=0 || tableConfig.github.allItems.length!=0 " class ="row ">
20- < div class ="col-lg-3 ">
20+ < div class ="col-lg-4 ">
2121 < div class ="input-group custom-search-form ">
2222 < input ng-model ="searchText " type ="text " class ="form-control " placeholder ="Find teams " ng-change ="onSearchChange('github', this) ">
2323 < span class ="input-group-btn ">
@@ -27,6 +27,7 @@ <h2>Git Access Control</h2>
2727 </ span >
2828 </ div >
2929 </ div >
30+ < div class ="col-lg-6 h5 "> Don't see your team? Make sure you have 'Maintainer' rights.</ div >
3031 </ div >
3132 < table ng-if ="tableConfig.github.items.length!=0 || tableConfig.github.allItems.length!=0 " class ="footable table table-stripped toggle-arrow-tiny ">
3233 < thead >
@@ -39,8 +40,14 @@ <h2>Git Access Control</h2>
3940 </ thead >
4041 < tbody >
4142 < tr ng-repeat ="item in tableConfig.github.items " ng-class-even ="'footable-even' " ng-class-odd ="'footable-odd' ">
42- < td class ="col-lg-2 "> {{item.name}}</ td >
43- < td class ="col-lg-2 "> {{item.organization.login}}</ td >
43+ < td class ="col-lg-2 ">
44+ < a href ="{{item.html_url}} "
45+ target ="_blank "> {{item.name}}</ a >
46+ </ td >
47+ < td class ="col-lg-2 ">
48+ < a href ="{{item.organization.html_url}} "
49+ target ="_blank "> {{item.organization.login}}</ a >
50+ </ td >
4451 < td class ="col-lg-2 ">
4552 < button class ="btn btn-sm btn-success " ng-hide ="item.gettingLink " ng-click ="getSharableLink(item, 'github') ">
4653 < strong > Get Link</ strong >
@@ -116,7 +123,7 @@ <h2>Git Access Control</h2>
116123 < div ng-if ="settings.gitlab==true ">
117124 < div ng-show ="tableConfig.gitlab.initialized ">
118125 < div ng-if ="tableConfig.gitlab.items.length!=0 || tableConfig.gitlab.allItems.length!=0 " class ="row ">
119- < div class ="col-lg-3 ">
126+ < div class ="col-lg-4 ">
120127 < div class ="input-group custom-search-form ">
121128 < input ng-model ="searchText " type ="text " class ="form-control " placeholder ="Find groups " ng-change ="onSearchChange('gitlab', this) ">
122129 < span class ="input-group-btn ">
@@ -126,6 +133,7 @@ <h2>Git Access Control</h2>
126133 </ span >
127134 </ div >
128135 </ div >
136+ < div class ="col-lg-6 h5 "> Don't see your group? Make sure you have 'Owner' rights.</ div >
129137 </ div >
130138 < table ng-show ="tableConfig.gitlab.items.length!=0 || tableConfig.gitlab.allItems.length!=0 " class ="footable table table-stripped toggle-arrow-tiny ">
131139 < thead >
@@ -136,7 +144,10 @@ <h2>Git Access Control</h2>
136144 </ thead >
137145 < tbody >
138146 < tr ng-repeat ="item in tableConfig.gitlab.items " ng-class-even ="'footable-even' " ng-class-odd ="'footable-odd' ">
139- < td class ="col-lg-2 "> {{item.name}}</ td >
147+ < td class ="col-lg-2 ">
148+ < a href ="{{item.web_url}} "
149+ target ="_blank "> {{item.name}}</ a >
150+ </ td >
140151 < td class ="col-lg-2 ">
141152 < button class ="btn btn-sm btn-success " ng-hide ="item.gettingLink " ng-click ="getSharableLink(item, 'gitlab') ">
142153 < strong > Get Link</ strong >
0 commit comments