annotate .svn/pristine/cd/cd674353ec11ce3e47c106792aeb680957571d71.svn-base @ 1516:b450a9d58aed
redmine-2.4
Update to Redmine SVN revision 13356 on 2.4-stable branch
author |
Chris Cannam |
date |
Tue, 09 Sep 2014 09:28:31 +0100 |
parents |
cbb26bc654de |
children |
|
rev |
line source |
Chris@909
|
1 <% content_for :header_tags do %>
|
Chris@909
|
2 <%= javascript_include_tag 'repository_navigation' %>
|
Chris@909
|
3 <% end %>
|
Chris@909
|
4
|
Chris@909
|
5 <%= link_to l(:label_statistics), {:action => 'stats', :id => @project}, :class => 'icon icon-stats' %>
|
Chris@909
|
6
|
Chris@909
|
7 <% form_tag({:action => controller.action_name, :id => @project, :path => to_path_param(@path), :rev => ''}, {:method => :get, :id => 'revision_selector'}) do -%>
|
Chris@909
|
8 <!-- Branches Dropdown -->
|
Chris@909
|
9 <% if !@repository.branches.nil? && @repository.branches.length > 0 -%>
|
Chris@909
|
10 | <%= l(:label_branch) %>:
|
Chris@909
|
11 <%= select_tag :branch, options_for_select([''] + @repository.branches,@rev), :id => 'branch' %>
|
Chris@909
|
12 <% end -%>
|
Chris@909
|
13
|
Chris@909
|
14 <% if !@repository.tags.nil? && @repository.tags.length > 0 -%>
|
Chris@909
|
15 | <%= l(:label_tag) %>:
|
Chris@909
|
16 <%= select_tag :tag, options_for_select([''] + @repository.tags,@rev), :id => 'tag' %>
|
Chris@909
|
17 <% end -%>
|
Chris@909
|
18
|
Chris@909
|
19 | <%= l(:label_revision) %>:
|
Chris@909
|
20 <%= text_field_tag 'rev', @rev, :size => 8 %>
|
Chris@909
|
21 <% end -%>
|