##// END OF EJS Templates
add mail footer test (#13482)...
add mail footer test (#13482) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11720 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10838:bda9b98a562e
r11490:9fea2ab6d224
Show More
show.html.erb
158 lines | 5.8 KiB | text/plain | TextLexer
Eric Davis
Add a second action menu to IssuesController#show. (#4331)...
r3005 <%= render :partial => 'action_menu' %>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Adds a helper for issue heading (#7647)....
r5327 <h2><%= issue_heading(@issue) %></h2>
Jean-Philippe Lang
Application layout refactored....
r736
Jean-Philippe Lang
Adds more css classes to the roadmap issues (#3214)....
r2602 <div class="<%= @issue.css_classes %> details">
Jean-Philippe Lang
Adds previous/next links to issue (#2850)....
r8368 <% if @prev_issue_id || @next_issue_id %>
<div class="next-prev-links contextual">
Toshi MARUYAMA
use i18n label for previous and next issue (#2850)...
r8373 <%= link_to_if @prev_issue_id,
Toshi MARUYAMA
Rails3: view: change html special characters to hexadecimal utf-8 strings at issues/show.html.erb...
r8375 "\xc2\xab #{l(:label_previous)}",
Jean-Philippe Lang
Rails 3.2.5 compatibility....
r9580 (@prev_issue_id ? issue_path(@prev_issue_id) : nil),
Toshi MARUYAMA
use i18n label for previous and next issue (#2850)...
r8373 :title => "##{@prev_issue_id}" %> |
Toshi MARUYAMA
replace tabs to spaces app/views/issues/show.html.erb...
r8768 <% if @issue_position && @issue_count %>
<span class="position"><%= l(:label_item_position, :position => @issue_position, :count => @issue_count) %></span> |
<% end %>
Toshi MARUYAMA
use i18n label for previous and next issue (#2850)...
r8373 <%= link_to_if @next_issue_id,
Toshi MARUYAMA
Rails3: view: change html special characters to hexadecimal utf-8 strings at issues/show.html.erb...
r8375 "#{l(:label_next)} \xc2\xbb",
Jean-Philippe Lang
Rails 3.2.5 compatibility....
r9580 (@next_issue_id ? issue_path(@next_issue_id) : nil),
Toshi MARUYAMA
use i18n label for previous and next issue (#2850)...
r8373 :title => "##{@next_issue_id}" %>
Jean-Philippe Lang
Adds previous/next links to issue (#2850)....
r8368 </div>
<% end %>
<%= avatar(@issue.author, :size => "50") %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/issues/show.html.erb...
r7121
<div class="subject">
Jean-Philippe Lang
Adds subtasking (#443) including:...
r3459 <%= render_issue_subject_with_tree(@issue) %>
</div>
Jean-Philippe Lang
Added 'Estimated hours' attribute on issues....
r720 <p class="author">
Jean-Philippe Lang
Changed author display on issues, news and document files....
r721 <%= authoring @issue.created_on, @issue.author %>.
Jean-Philippe Lang
Adds issue last update timestamp (#3565)....
r2703 <% if @issue.created_on != @issue.updated_on %>
Jean-Philippe Lang
html_safe for Rails3...
r8150 <%= l(:label_updated_time, time_tag(@issue.updated_on)).html_safe %>.
Jean-Philippe Lang
Adds issue last update timestamp (#3565)....
r2703 <% end %>
Jean-Philippe Lang
Added 'Estimated hours' attribute on issues....
r720 </p>
Jean-Philippe Lang
Application layout refactored....
r736
Jean-Philippe Lang
Remove hard-coded styles from ticket attributes table....
r2721 <table class="attributes">
Jean-Philippe Lang
Ability to disable standard fields on a per tracker basis (#1091)....
r9729 <%= issue_fields_rows do |rows|
rows.left l(:field_status), h(@issue.status.name), :class => 'status'
rows.left l(:field_priority), h(@issue.priority.name), :class => 'priority'
unless @issue.disabled_core_fields.include?('assigned_to_id')
Jean-Philippe Lang
Fixed that link to the assignee is escaped twice on the issue view (#11352)....
r9784 rows.left l(:field_assigned_to), avatar(@issue.assigned_to, :size => "14").to_s.html_safe + (@issue.assigned_to ? link_to_user(@issue.assigned_to) : "-"), :class => 'assigned-to'
Jean-Philippe Lang
Ability to disable standard fields on a per tracker basis (#1091)....
r9729 end
unless @issue.disabled_core_fields.include?('category_id')
rows.left l(:field_category), h(@issue.category ? @issue.category.name : "-"), :class => 'category'
end
unless @issue.disabled_core_fields.include?('fixed_version_id')
rows.left l(:field_fixed_version), (@issue.fixed_version ? link_to_version(@issue.fixed_version) : "-"), :class => 'fixed-version'
end
unless @issue.disabled_core_fields.include?('start_date')
rows.right l(:field_start_date), format_date(@issue.start_date), :class => 'start-date'
end
unless @issue.disabled_core_fields.include?('due_date')
rows.right l(:field_due_date), format_date(@issue.due_date), :class => 'due-date'
end
unless @issue.disabled_core_fields.include?('done_ratio')
rows.right l(:field_done_ratio), progress_bar(@issue.done_ratio, :width => '80px', :legend => "#{@issue.done_ratio}%"), :class => 'progress'
end
unless @issue.disabled_core_fields.include?('estimated_hours')
Toshi MARUYAMA
do not show estimated time if it is nil on issue page...
r10181 unless @issue.estimated_hours.nil?
rows.right l(:field_estimated_hours), l_hours(@issue.estimated_hours), :class => 'estimated-hours'
end
Jean-Philippe Lang
Ability to disable standard fields on a per tracker basis (#1091)....
r9729 end
if User.current.allowed_to?(:view_time_entries, @project)
Jean-Philippe Lang
Code cleanup, use named routes....
r10838 rows.right l(:label_spent_time), (@issue.total_spent_hours > 0 ? link_to(l_hours(@issue.total_spent_hours), project_issue_time_entries_path(@project, @issue)) : "-"), :class => 'spent-time'
Jean-Philippe Lang
Ability to disable standard fields on a per tracker basis (#1091)....
r9729 end
end %>
Jean-Philippe Lang
Fixed: custom fields are not displayed in the same order on issue form and view....
r2722 <%= render_custom_fields_rows(@issue) %>
Jean-Philippe Lang
Merged hooks branch @ r1785 into trunk....
r1785 <%= call_hook(:view_issues_show_details_bottom, :issue => @issue) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </table>
Jean-Philippe Lang
Commit messages are now scanned for referenced or fixed issue IDs....
r470
Jean-Philippe Lang
Remove the Description label from the issue view and omit the block if empty (#6677)....
r4150 <% if @issue.description? || @issue.attachments.any? -%>
<hr />
Jean-Philippe Lang
Restores the issue description label (#6677)....
r4392 <% if @issue.description? %>
Jean-Philippe Lang
Wrap issue description and its contextual menu in a div (#12211)....
r10516 <div class="description">
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/show.html.erb...
r7122 <div class="contextual">
Jean-Philippe Lang
Code cleanup, use named routes....
r10838 <%= link_to l(:button_quote), quoted_issue_path(@issue), :remote => true, :method => 'post', :class => 'icon icon-comment' if authorize_for('issues', 'edit') %>
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/show.html.erb...
r7122 </div>
<p><strong><%=l(:field_description)%></strong></p>
<div class="wiki">
<%= textilizable @issue, :description, :attachments => @issue.attachments %>
</div>
Jean-Philippe Lang
Wrap issue description and its contextual menu in a div (#12211)....
r10516 </div>
Jean-Philippe Lang
Restores the issue description label (#6677)....
r4392 <% end %>
Jean-Philippe Lang
Displays thumbnails of attached images of the issue view (#1006)....
r9750 <%= link_to_attachments @issue, :thumbnails => true %>
Jean-Philippe Lang
Remove the Description label from the issue view and omit the block if empty (#6677)....
r4150 <% end -%>
Jean-Philippe Lang
Slight change to issues/show....
r751
Eric Davis
Added several more plugin hooks:...
r2535 <%= call_hook(:view_issues_show_description_bottom, :issue => @issue) %>
Jean-Philippe Lang
Adds subtasking (#443) including:...
r3459 <% if !@issue.leaf? || User.current.allowed_to?(:manage_subtasks, @project) %>
<hr />
<div id="issue_tree">
<div class="contextual">
Jean-Philippe Lang
Adds a helper for displaying a link to add a subtask (#12113)....
r10450 <%= link_to_new_subtask(@issue) if User.current.allowed_to?(:manage_subtasks, @project) %>
Jean-Philippe Lang
Adds subtasking (#443) including:...
r3459 </div>
Jean-Philippe Lang
Slight UI changes to the subtasks tree....
r3463 <p><strong><%=l(:label_subtask_plural)%></strong></p>
Jean-Philippe Lang
Adds subtasking (#443) including:...
r3459 <%= render_descendants_tree(@issue) unless @issue.leaf? %>
</div>
<% end %>
Jean-Philippe Lang
Code cleanup....
r5324 <% if @relations.present? || User.current.allowed_to?(:manage_issue_relations, @project) %>
Jean-Philippe Lang
Application layout refactored....
r736 <hr />
<div id="relations">
Jean-Philippe Lang
Issue relations first commit (not thoroughly tested). 4 kinds of relation are available:...
r503 <%= render :partial => 'relations' %>
</div>
<% end %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 </div>
Jean-Philippe Lang
Application layout refactored....
r736
Eric Davis
Use present? instead of any?. Handles nil case....
r3622 <% if @changesets.present? %>
Jean-Philippe Lang
Added related changesets messages on issue details view....
r1071 <div id="issue-changesets">
<h3><%=l(:label_associated_revisions)%></h3>
Jean-Philippe Lang
Sort changesets in the same order as comments on the issue details view (#1546)....
r2455 <%= render :partial => 'changesets', :locals => { :changesets => @changesets} %>
Jean-Philippe Lang
Added related changesets messages on issue details view....
r1071 </div>
<% end %>
Eric Davis
Use present? instead of any?. Handles nil case....
r3622 <% if @journals.present? %>
Jean-Philippe Lang
Application layout refactored....
r736 <div id="history">
Jean-Philippe Lang
Removed IssuesController#history, all changes are now displayed on issues/show (not only the last 15)....
r610 <h3><%=l(:label_history)%></h3>
Jean-Philippe Lang
Inlines some code to speed up large ticket history rendering....
r3480 <%= render :partial => 'history', :locals => { :issue => @issue, :journals => @journals } %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
Jean-Philippe Lang
History box on issues/show is now hidden if there's no history...
r593 <% end %>
Eric Davis
Add a second action menu to IssuesController#show. (#4331)...
r3005
Jean-Philippe Lang
Fixes #773: Changeset block is smashing the update frame on issues/show....
r1179 <div style="clear: both;"></div>
Jean-Philippe Lang
Cleaner way to handle the replacement of watch links (#8071)....
r5200 <%= render :partial => 'action_menu' %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Fixes bottom links placement in issue with associated changesets (#4883)....
r3402 <div style="clear: both;"></div>
Jean-Philippe Lang
Code cleanup, use named routes....
r10838 <% if @issue.editable? %>
Jean-Philippe Lang
Merged IssuesController change_status and add_note actions....
r1030 <div id="update" style="display:none;">
<h3><%= l(:button_update) %></h3>
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 <%= render :partial => 'edit' %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
Jean-Philippe Lang
Initial commit...
r2 <% end %>
Jean-Philippe Lang
Buttons (edit, watch...) on issues/show are now located in the upper-right corner....
r686
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% other_formats_links do |f| %>
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/show.html.erb...
r7122 <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
<%= f.link_to 'PDF' %>
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% end %>
Jean-Philippe Lang
Removed @html_title assignments in controllers....
r704
Etienne Massip
Remove unecessary page title HTML escaping from views (#9252)....
r7445 <% html_title "#{@issue.tracker.name} ##{@issue.id}: #{@issue.subject}" %>
Jean-Philippe Lang
Application layout refactored....
r736
<% content_for :sidebar do %>
Jean-Philippe Lang
Move issue watchers to the sidebar....
r3465 <%= render :partial => 'issues/sidebar' %>
<% if User.current.allowed_to?(:add_issue_watchers, @project) ||
Eric Davis
Use present? instead of any?. Handles nil case....
r3622 (@issue.watchers.present? && User.current.allowed_to?(:view_issue_watchers, @project)) %>
Jean-Philippe Lang
Move issue watchers to the sidebar....
r3465 <div id="watchers">
<%= render :partial => 'watchers/watchers', :locals => {:watched => @issue} %>
</div>
<% end %>
Jean-Philippe Lang
Application layout refactored....
r736 <% end %>
Jean-Philippe Lang
Display links to Atom feeds (closes #496, #750)....
r1171
<% content_for :header_tags do %>
<%= auto_discovery_link_tag(:atom, {:format => 'atom', :key => User.current.rss_key}, :title => "#{@issue.project} - #{@issue.tracker} ##{@issue.id}: #{@issue.subject}") %>
<% end %>
Jean-Philippe Lang
Use #context_menu helper....
r8403
<%= context_menu issues_context_menu_path %>