<table class="list">
<thead>
<tr>
- <th><%= l(:label_scm) %></th>
<th><%= l(:field_identifier) %></th>
<th><%= l(:field_repository_is_default) %></th>
+ <th><%= l(:label_scm) %></th>
<th><%= l(:label_repository) %></th>
<th></th>
</tr>
<tbody>
<% @project.repositories.sort.each do |repository| %>
<tr class="<%= cycle 'odd', 'even' %>">
- <td><%=h repository.scm_name %></td>
- <td><%=h repository.identifier %></td>
+ <td>
+ <%= link_to repository.identifier,
+ {:controller => 'repositories', :action => 'show',:id => @project, :repository_id => repository.identifier_param} if repository.identifier_param.present? %>
+ </td>
<td align="center"><%= checked_image repository.is_default? %></td>
+ <td><%=h repository.scm_name %></td>
<td><%=h repository.url %></td>
<td class="buttons">
<% if User.current.allowed_to?(:manage_repository, @project) %>