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