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

17 lines
460 B
Text
Raw Normal View History

<div class="shoutmsg">
2014-05-03 01:21:29 +00:00
<div class="user">
<span class="username">
<% if shoutmsg.can_destroy? cuser %>
<%= link_to icon('times'), shoutmsg, method: :delete %>
<% end %>
2014-05-03 01:21:29 +00:00
<%= namelink shoutmsg.user %>
</span>
<span class="time">
<%= shoutmsg.created_at ? shoutmsg.created_at.strftime("%H:%M") : Time.now.strftime("%H:%M") %>
</span>
</div>
<div class="message">
<%= shoutmsg.text %>
</div>
</div>