ensl.org/app/views/shoutmsgs/_shoutmsg.html.erb
Luke Barratt 180ab8a408 Prefer 1.9 hash syntax
Remove unused log entries?
2014-05-19 21:44:47 +01:00

18 lines
553 B
Text

<div class="shoutmsg">
<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">
<div class="contents">
<%= auto_link shoutmsg.text, html: { target: '_blank' } %>
<% if shoutmsg.can_destroy? cuser %>
<%= link_to icon('times'), shoutmsg, method: :delete, class: 'destroy' %>
<% end %>
</div>
</div>
</div>