2013-07-26 15:27:46 +08:00
|
|
|
<table class='post-wrapper'>
|
2013-07-24 15:13:15 +08:00
|
|
|
<tbody>
|
|
|
|
<tr>
|
2013-07-26 15:27:46 +08:00
|
|
|
<td class='user-avatar'>
|
2015-03-24 23:25:47 +08:00
|
|
|
<img src="<%= post.user.small_avatar_url %>" title="<%= post.user.username%>">
|
2013-07-24 15:13:15 +08:00
|
|
|
</td>
|
2013-07-26 15:27:46 +08:00
|
|
|
<td>
|
2015-03-24 02:12:11 +08:00
|
|
|
<a class="username" href="<%=Discourse.base_url%>/users/<%= post.user.username_lower%>" target="_blank"><%= post.user.username %></a>
|
2015-04-23 04:15:23 +08:00
|
|
|
<%- if show_name_on_post(post) %>
|
2015-03-24 23:25:47 +08:00
|
|
|
<a class="user-name" href="<%=Discourse.base_url%>/users/<%= post.user.username_lower%>" target="_blank"><%= post.user.name %></a>
|
|
|
|
<% end %>
|
2015-03-24 02:12:11 +08:00
|
|
|
<%- if post.user.title.present? %>
|
|
|
|
<span class='user-title'><%= post.user.title %></span>
|
|
|
|
<% end %>
|
|
|
|
<br>
|
2014-05-15 04:40:54 +08:00
|
|
|
<span class='notification-date'><%= l post.created_at, format: :short_no_year %></span>
|
2013-07-24 15:13:15 +08:00
|
|
|
</td>
|
|
|
|
</tr>
|
2013-07-26 15:27:46 +08:00
|
|
|
<tr>
|
2014-11-06 03:37:00 +08:00
|
|
|
<td class='body'><%= format_for_email(post.cooked) %></td>
|
2013-07-26 15:27:46 +08:00
|
|
|
</tr>
|
2013-07-24 15:13:15 +08:00
|
|
|
</tbody>
|
|
|
|
</table>
|