ensl.org/app/views/shoutmsgs/_shoutmsg.html.erb

13 lines
342 B
Text
Raw Normal View History

<div class="shoutmsg">
<% if shoutmsg.can_destroy? cuser %>
<%= link_to icon('times'), shoutmsg, method: :delete %>
<% end %>
<span class="timestamp">
<%= shoutmsg.created_at ? shoutmsg.created_at.strftime("%H:%M") : Time.now.strftime("%H:%M") %>
</span>
<%= namelink shoutmsg.user %>:
<%= shoutmsg.text %><br />
</div>