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

19 lines
553 B
Text
Raw Normal View History

<div class="shoutmsg">
2014-05-03 01:21:29 +00:00
<div class="user">
<span class="username">
<%= 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">
2014-05-10 12:43:40 +00:00
<div class="contents">
<%= auto_link shoutmsg.text, html: { target: '_blank' } %>
2014-05-10 12:43:40 +00:00
<% if shoutmsg.can_destroy? cuser %>
<%= link_to icon('times'), shoutmsg, method: :delete, class: 'destroy' %>
<% end %>
</div>
</div>
</div>