##// END OF EJS Templates
Option for long text custom fields to be displayed under the description field (#21705)....
Option for long text custom fields to be displayed under the description field (#21705). Based on patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@16251 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15828:62c7d1142721
r15869:b40d66f39fa8
Show More
show.html.erb
57 lines | 2.8 KiB | text/plain | TextLexer
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942 <div class="contextual">
Jean-Philippe Lang
Makes versions resource shallow (#7403)....
r6063 <%= link_to(l(:button_edit), edit_version_path(@version), :class => 'icon icon-edit') if User.current.allowed_to?(:manage_versions, @version.project) %>
Jean-Baptiste Barth
Fix wikilinks in project > settings > versions and version view. #6435 #4416...
r4193 <%= link_to_if_authorized(l(:button_edit_associated_wikipage, :page_title => @version.wiki_page_title), {:controller => 'wiki', :action => 'edit', :project_id => @version.project, :id => Wiki.titleize(@version.wiki_page_title)}, :class => 'icon icon-edit') unless @version.wiki_page_title.blank? || @version.project.wiki.nil? %>
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 <%= delete_link version_path(@version, :back_url => url_for(:controller => 'versions', :action => 'index', :project_id => @version.project)) if User.current.allowed_to?(:manage_versions, @version.project) %>
Eric Davis
Added :view_versions_show_contextual hook. (#3036)...
r2671 <%= call_hook(:view_versions_show_contextual, { :version => @version, :project => @project }) %>
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942 </div>
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <h2><%= @version.name %></h2>
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942
Jean-Philippe Lang
Additional CSS class for version status (#21434)....
r14888 <div id="roadmap" class="<%= @version.css_classes %>">
Jean-Philippe Lang
Moved the version summary to the right of related issues....
r5479 <%= render :partial => 'versions/overview', :locals => {:version => @version} %>
<%= render(:partial => "wiki/content", :locals => {:content => @version.wiki_page.content}) if @version.wiki_page %>
Jean-Philippe Lang
Version details view changes:...
r1193 <div id="version-summary">
<% if @version.estimated_hours > 0 || User.current.allowed_to?(:view_time_entries, @project) %>
Jean-Philippe Lang
Removed hard-coded styles....
r8511 <fieldset class="time-tracking"><legend><%= l(:label_time_tracking) %></legend>
Jean-Philippe Lang
Version details view changes:...
r1193 <table>
<tr>
Jean-Philippe Lang
Removed hard-coded styles....
r8511 <th><%= l(:field_estimated_hours) %></th>
Jean-Philippe Lang
Add link to issue list on version estimated time....
r15659 <td class="total-hours"><%= link_to html_hours(l_hours(@version.estimated_hours)),
project_issues_path(@version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => @version.id, :c => [:tracker, :status, :subject, :estimated_hours], :t => [:estimated_hours]) %></td>
Jean-Philippe Lang
Version details view changes:...
r1193 </tr>
Jean-Philippe Lang
Adds a role setting that viewing all or own time entries (#8929)....
r13893 <% if User.current.allowed_to_view_all_time_entries?(@project) %>
Jean-Philippe Lang
Version details view changes:...
r1193 <tr>
Jean-Philippe Lang
Removed hard-coded styles....
r8511 <th><%= l(:label_spent_time) %></th>
Jean-Philippe Lang
Adds a link to spent time on version details (#13558)....
r15266 <td class="total-hours"><%= link_to html_hours(l_hours(@version.spent_hours)),
project_time_entries_path(@version.project, :set_filter => 1, :"issue.fixed_version_id" => @version.id) %></td>
Jean-Philippe Lang
Version details view changes:...
r1193 </tr>
<% end %>
</table>
</fieldset>
<% end %>
Jean-Philippe Lang
Fixed versions/show layout with IE....
r948 <div id="status_by">
Jean-Philippe Lang
Use exists? instead of count (#24839)....
r15828 <%= render_issue_status_by(@version, params[:status_by]) if @version.fixed_issues.exists? %>
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942 </div>
Jean-Philippe Lang
Version details view changes:...
r1193 </div>
Jean-Philippe Lang
Added version details view accessible from the roadmap....
r942
Jean-Philippe Lang
Moves code to controller....
r3751 <% if @issues.present? %>
Jean-Philippe Lang
Don't use a global variable for storing context menu URL....
r15554 <%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do -%>
Jean-Philippe Lang
Adds context menu for related issues on version view....
r5480 <table class="list related-issues">
<caption><%= l(:label_related_issues) %></caption>
<%- @issues.each do |issue| -%>
Jean-Philippe Lang
Adds some css classes (#14767)....
r11941 <tr class="issue hascontextmenu">
Jean-Philippe Lang
Do not generate duplicate ids and fixes tag attribute....
r8441 <td class="checkbox"><%= check_box_tag 'ids[]', issue.id, false, :id => nil %></td>
Jean-Philippe Lang
Adds some css classes (#14767)....
r11941 <td class="subject"><%= link_to_issue(issue, :project => (@project != issue.project)) %></td>
Jean-Philippe Lang
Adds context menu for related issues on version view....
r5480 </tr>
<% end %>
</table>
<% end %>
Jean-Philippe Lang
Don't use a global variable for storing context menu URL....
r15554 <%= context_menu %>
Jean-Philippe Lang
Version details view changes:...
r1193 <% end %>
</div>
Jean-Philippe Lang
Merged hooks branch @ r1785 into trunk....
r1785 <%= call_hook :view_versions_show_bottom, :version => @version %>
Etienne Massip
Remove unecessary page title HTML escaping from views (#9252)....
r7445 <% html_title @version.name %>