##// END OF EJS Templates
code layout cleanup app/views/repositories/revisions.html.erb...
Toshi MARUYAMA -
r8584:73b175df8fe1
parent child
Show More
@@ -1,30 +1,33
1 1 <div class="contextual">
2 <% form_tag({:action => 'revision', :id => @project, :repository_id => @repository.identifier_param}) do %>
2 <% form_tag(
3 {:action => 'revision', :id => @project,
4 :repository_id => @repository.identifier_param}
5 ) do %>
3 6 <%= l(:label_revision) %>: <%= text_field_tag 'rev', @rev, :size => 8 %>
4 7 <%= submit_tag 'OK' %>
5 8 <% end %>
6 9 </div>
7 10
8 11 <h2><%= l(:label_revision_plural) %></h2>
9 12
10 13 <%= render :partial => 'revisions',
11 14 :locals => {:project => @project,
12 15 :path => '',
13 16 :revisions => @changesets,
14 17 :entry => nil } %>
15 18
16 19 <p class="pagination"><%= pagination_links_full @changeset_pages,@changeset_count %></p>
17 20
18 21 <% content_for :header_tags do %>
19 22 <%= stylesheet_link_tag "scm" %>
20 23 <%= auto_discovery_link_tag(
21 24 :atom,
22 25 params.merge(
23 26 {:format => 'atom', :page => nil, :key => User.current.rss_key})) %>
24 27 <% end %>
25 28
26 29 <% other_formats_links do |f| %>
27 30 <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
28 31 <% end %>
29 32
30 33 <% html_title(l(:label_revision_plural)) -%>
General Comments 0
You need to be logged in to leave comments. Login now