解决问题显示不清晰的bug
This commit is contained in:
parent
0a3999b138
commit
b0e5baafaf
|
@ -1,23 +1,38 @@
|
||||||
<% reply_links = authorize_for('issues', 'edit') -%>
|
<% reply_links = authorize_for('issues', 'edit') -%>
|
||||||
<% for journal in journals %>
|
<% for journal in journals %>
|
||||||
<div id="change-<%= journal.id %>" class="<%= journal.css_classes %>">
|
<div id="change-<%= journal.id %>" class="<%= journal.css_classes %>">
|
||||||
<div id="note-<%= journal.indice %>">
|
|
||||||
<h4><%= link_to "##{journal.indice}", {:anchor => "note-#{journal.indice}"}, :class => "journal-link" %>
|
|
||||||
<!-- <%= avatar(journal.user, :size => "24") %> -->
|
|
||||||
<%= image_tag url_to_avatar(journal.user), :class => 'avatar' %>
|
|
||||||
<%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %></h4>
|
|
||||||
|
|
||||||
<% if journal.details.any? %>
|
<table width="660px" border="0" align="center">
|
||||||
<ul class="details">
|
<tr>
|
||||||
<% details_to_strings(journal.details).each do |string| %>
|
<td colspan="2" valign="top" width="50" ><%= link_to image_tag(url_to_avatar(journal.user), :class => "avatar"), user_path(journal.user), :class => "avatar" %></td>
|
||||||
<li><%= string %></li>
|
<td>
|
||||||
<% end %>
|
<table width="580px" border="0">
|
||||||
</ul>
|
<tr>
|
||||||
<% end %>
|
<td colspan="2" valign="top"><strong> <%= link_to journal.user, user_path(journal.user)%></strong> <%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %> <div id="note-<%= journal.indice %>"></td>
|
||||||
<%= render_notes(issue, journal, :reply_links => reply_links) unless journal.notes.blank? %>
|
</tr>
|
||||||
</div>
|
<tr>
|
||||||
</div>
|
<td colspan="2" width="580px" >
|
||||||
<%= call_hook(:view_issues_history_journal_bottom, { :journal => journal }) %>
|
<p class="font_description">
|
||||||
|
<% if journal.details.any? %>
|
||||||
|
<span class="details"> <% details_to_strings(journal.details).each do |string| %>
|
||||||
|
|
||||||
|
<%= string %>
|
||||||
|
<% end %> </span>
|
||||||
|
<% end %>
|
||||||
|
<%= render_notes(issue, journal, :reply_links => reply_links) unless journal.notes.blank? %>
|
||||||
|
</p></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="left"><span class="font_lighter"> <%= format_time journal.created_on %></span></td>
|
||||||
|
<td width="200" align="right" class="a"></td>
|
||||||
|
</tr>
|
||||||
|
</table></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="line_under"></div>
|
||||||
|
|
||||||
|
<%= call_hook(:view_issues_history_journal_bottom, { :journal => journal }) %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<% heads_for_wiki_formatter if User.current.allowed_to?(:edit_issue_notes, issue.project) || User.current.allowed_to?(:edit_own_issue_notes, issue.project) %>
|
<% heads_for_wiki_formatter if User.current.allowed_to?(:edit_issue_notes, issue.project) || User.current.allowed_to?(:edit_own_issue_notes, issue.project) %>
|
||||||
|
|
Loading…
Reference in New Issue