3e0acc0b7e
ApplicationHelper#set_html_title replaced by html_title with arguments and can be called several times in views to append elements to the title. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1032 e93f8b46-1217-0410-a6f0-8f06a7374b81
15 lines
559 B
Plaintext
15 lines
559 B
Plaintext
<div class="contextual">
|
|
<%= link_to_if_authorized l(:button_edit), {:controller => 'versions', :action => 'edit', :id => @version}, :class => 'icon icon-edit' %>
|
|
</div>
|
|
|
|
<h2><%= h(@version.name) %></h2>
|
|
|
|
<div id="status_by">
|
|
<%= render_issue_status_by(@version, params[:status_by]) if @version.fixed_issues.count > 0 %>
|
|
</div>
|
|
|
|
<%= render :partial => 'versions/overview', :locals => {:version => @version} %>
|
|
<%= render(:partial => "wiki/content", :locals => {:content => @version.wiki_page.content}) if @version.wiki_page %>
|
|
|
|
<% html_title @version.name %>
|