diff options
Diffstat (limited to 'app/views/repositories/revisions.rhtml')
-rw-r--r-- | app/views/repositories/revisions.rhtml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/views/repositories/revisions.rhtml b/app/views/repositories/revisions.rhtml index 91ef64ed4..4a5b3766e 100644 --- a/app/views/repositories/revisions.rhtml +++ b/app/views/repositories/revisions.rhtml @@ -9,7 +9,12 @@ <% if @entry && @entry.is_file? %> <h3><%=h @entry.name %></h3> -<p><%= link_to l(:button_download), {:action => 'entry', :id => @project, :path => @path, :rev => @rev, :format => 'raw' }, :class => "icon file" %> (<%= number_to_human_size @entry.size %>)</p> +<p> +<% if @entry.is_text? %> +<%= link_to l(:button_view), {:action => 'entry', :id => @project, :path => @path, :rev => @rev } %> | +<% end %> +<%= link_to l(:button_download), {:action => 'entry', :id => @project, :path => @path, :rev => @rev, :format => 'raw' } %> +(<%= number_to_human_size @entry.size %>)</p> <% end %> <h3><%= l(:label_revision_plural) %></h3> |