2015-10-22 13:44:35 +08:00
|
|
|
<!--<a href="javascript:void(0);" class="pic_stats fl ml20 mt3"></a>-->
|
|
|
|
<%#= link_to l(:label_statistics),
|
2013-09-30 15:31:46 +08:00
|
|
|
{:action => 'stats', :id => @project, :repository_id => @repository.identifier_param},
|
2015-04-17 11:14:55 +08:00
|
|
|
:class => 'mt3 c_blue fl' if @repository.supports_all_revisions? %>
|
2015-10-26 17:18:59 +08:00
|
|
|
<div class="repositorytitle mr15">
|
2015-10-27 11:41:25 +08:00
|
|
|
<% content_for :header_tags do %>
|
|
|
|
<%= javascript_include_tag 'repository_navigation' %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<%= form_tag({:action => controller.action_name,
|
|
|
|
:id => @project,
|
|
|
|
:repository_id => @repository.identifier_param,
|
|
|
|
:path => to_path_param(@path),
|
|
|
|
:rev => nil},
|
|
|
|
{:method => :get, :id => 'revision_selector'}) do -%>
|
2015-10-22 16:03:22 +08:00
|
|
|
<!-- Branches Dropdown -->
|
|
|
|
<% if !@repository.branches.nil? && @repository.branches.length > 0 -%>
|
|
|
|
<%= l(:label_branch) %>:
|
|
|
|
<%= select_tag :branch, options_for_select([''] + @repository.branches, @rev), :id => 'branch' %>
|
|
|
|
<% end -%>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
2015-10-27 11:41:25 +08:00
|
|
|
<% if !@repository.tags.nil? && @repository.tags.length > 0 -%>
|
|
|
|
<%= select_tag :tag, options_for_select([''] + @repository.tags, @rev), :id => 'tag', :style=>" display:none" %>
|
|
|
|
<% end -%>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
2015-10-27 11:41:25 +08:00
|
|
|
<% if @repository.supports_all_revisions? %>
|
|
|
|
<%= hidden_field_tag 'rev', @rev, :size => 8 %>
|
|
|
|
<% end %>
|
2015-10-22 16:03:22 +08:00
|
|
|
<% end -%>
|
2015-10-27 11:41:25 +08:00
|
|
|
|
2015-10-22 16:03:22 +08:00
|
|
|
</div>
|