changes.rhtml
19 lines
| 982 B
| text/html+ruby
|
RhtmlLexer
|
r556 | <h2><%= render :partial => 'navigation', :locals => { :path => @path, :kind => (@entry ? @entry.kind : nil), :revision => @rev } %></h2> | ||
<p> | ||||
|
r1259 | <% if @repository.supports_cat? %> | ||
|
r1609 | <%= link_to l(:button_view), {:action => 'entry', :id => @project, :path => to_path_param(@path), :rev => @rev } %> | | ||
|
r1259 | <% end %> | ||
<% if @repository.supports_annotate? %> | ||||
|
r1609 | <%= link_to l(:button_annotate), {:action => 'annotate', :id => @project, :path => to_path_param(@path), :rev => @rev } %> | | ||
|
r556 | <% end %> | ||
|
r1609 | <%= link_to(l(:button_download), {:action => 'entry', :id => @project, :path => to_path_param(@path), :rev => @rev, :format => 'raw' }) if @repository.supports_cat? %> | ||
|
r556 | <%= "(#{number_to_human_size(@entry.size)})" if @entry.size %> | ||
</p> | ||||
|
r1613 | <%= render_properties(@properties) %> | ||
|
r1497 | <%= render(:partial => 'revisions', | ||
:locals => {:project => @project, :path => @path, :revisions => @changesets, :entry => @entry }) unless @changesets.empty? %> | ||||
|
r951 | |||
|
r1019 | <% html_title(l(:label_change_plural)) -%> | ||