34 lines
1.3 KiB
Plaintext
34 lines
1.3 KiB
Plaintext
<!--<a href="javascript:void(0);" class="pic_stats fl ml20 mt3"></a>-->
|
|
<%#= link_to l(:label_statistics),
|
|
{:action => 'stats', :id => @project, :repository_id => @repository.identifier_param},
|
|
:class => 'mt3 c_blue fl' if @repository.supports_all_revisions? %>
|
|
<div class="repositorytitle mr15">
|
|
<% 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 -%>
|
|
<!-- 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 -%>
|
|
|
|
<%# if !@repository.tags.nil? && @repository.tags.length > 0 -%>
|
|
<%#= select_tag :tag, options_for_select([''] + @repository.tags, @rev), :id => 'tag', :style=>" display:none" %>
|
|
<%# end -%>
|
|
|
|
<% if @repository.supports_all_revisions? %>
|
|
<%= hidden_field_tag 'rev', @rev, :size => 8 %>
|
|
<% end %>
|
|
<% end -%>
|
|
|
|
</div>
|