Avoid using raw html in translations for the issues index
This commit is contained in:
parent
92e3e425f1
commit
dff0c82f17
2 changed files with 6 additions and 7 deletions
|
@ -61,13 +61,13 @@
|
|||
<td><%= link_to reportable_title(issue.reportable), reportable_url(issue.reportable) %></td>
|
||||
<td><%= link_to issue.reported_user.display_name, user_path(issue.reported_user) if issue.reported_user %></td>
|
||||
<td>
|
||||
<% time_ago_tag = tag.abbr(time_ago_in_words(issue.updated_at, :scope => :"datetime.distance_in_words_ago"),
|
||||
:title => l(issue.updated_at)) %>
|
||||
<% if issue.user_updated %>
|
||||
<%= t ".last_updated_time_user_html", :user => link_to(issue.user_updated.display_name, user_path(issue.user_updated)),
|
||||
:time => time_ago_in_words(issue.updated_at, :scope => :"datetime.distance_in_words_ago"),
|
||||
:title => l(issue.updated_at) %>
|
||||
<%= t ".last_updated_time_ago_user_html", :user => link_to(issue.user_updated.display_name, user_path(issue.user_updated)),
|
||||
:time_ago => time_ago_tag %>
|
||||
<% else %>
|
||||
<%= t ".last_updated_time_html", :time => time_ago_in_words(issue.updated_at, :scope => :"datetime.distance_in_words_ago"),
|
||||
:title => l(issue.updated_at) %>
|
||||
<%= time_ago_tag %>
|
||||
<% end %>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue