Mercurial > hg > soundsoftware-site
diff .svn/pristine/d3/d342373157c2f5ea01cb1436ba31abc7a763a60e.svn-base @ 1464:261b3d9a4903 redmine-2.4
Update to Redmine 2.4 branch rev 12663
author | Chris Cannam |
---|---|
date | Tue, 14 Jan 2014 14:37:42 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.svn/pristine/d3/d342373157c2f5ea01cb1436ba31abc7a763a60e.svn-base Tue Jan 14 14:37:42 2014 +0000 @@ -0,0 +1,41 @@ +<% if @project.repositories.any? %> +<table class="list"> + <thead> + <tr> + <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> + </thead> + <tbody> + <% @project.repositories.sort.each do |repository| %> + <tr class="<%= cycle 'odd', 'even' %>"> + <td class="name"> + <%= link_to repository.identifier, + {:controller => 'repositories', :action => 'show',:id => @project, :repository_id => repository.identifier_param} if repository.identifier.present? %> + </td> + <td><%= 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) %> + <%= link_to(l(:label_user_plural), committers_repository_path(repository), + :class => 'icon icon-user') %> + <%= link_to(l(:button_edit), edit_repository_path(repository), + :class => 'icon icon-edit') %> + <%= delete_link repository_path(repository) %> + <% end %> + </td> + </tr> + <% end %> + </tbody> +</table> +<% else %> +<p class="nodata"><%= l(:label_no_data) %></p> +<% end %> + +<% if User.current.allowed_to?(:manage_repository, @project) %> + <p><%= link_to l(:label_repository_new), new_project_repository_path(@project), :class => 'icon icon-add' %></p> +<% end %>