##// END OF EJS Templates
Use named routes....
Use named routes. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8630 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8352:65959100f469
r8510:0367266f669c
Show More
_navigation.html.erb
31 lines | 1.0 KiB | text/plain | TextLexer
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 <% content_for :header_tags do %>
<%= javascript_include_tag 'repository_navigation' %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Toshi MARUYAMA
code layout cleanup app/views/repositories/_navigation.html.erb...
r8352 <%= link_to l(:label_statistics),
{:action => 'stats', :id => @project},
:class => 'icon icon-stats' %>
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735
Toshi MARUYAMA
code layout cleanup app/views/repositories/_navigation.html.erb...
r8352 <% form_tag({:action => controller.action_name,
:id => @project,
:path => to_path_param(@path),
:rev => ''},
{:method => :get, :id => 'revision_selector'}) do -%>
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 <!-- Branches Dropdown -->
<% if !@repository.branches.nil? && @repository.branches.length > 0 -%>
| <%= l(:label_branch) %>:
Toshi MARUYAMA
code layout cleanup app/views/repositories/_navigation.html.erb...
r8352 <%= select_tag :branch,
options_for_select([''] + @repository.branches, @rev),
:id => 'branch' %>
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 <% end -%>
<% if !@repository.tags.nil? && @repository.tags.length > 0 -%>
| <%= l(:label_tag) %>:
Toshi MARUYAMA
code layout cleanup app/views/repositories/_navigation.html.erb...
r8352 <%= select_tag :tag,
options_for_select([''] + @repository.tags, @rev),
:id => 'tag' %>
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 <% end -%>
Jean-Philippe Lang
Slight improvements to the browser views....
r1019
Eric Davis
Added branch and tag support to the git repository viewer. (#1406)...
r2735 | <%= l(:label_revision) %>:
<%= text_field_tag 'rev', @rev, :size => 8 %>
<% end -%>