mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 17:31:27 +00:00
180ab8a408
Remove unused log entries?
18 lines
553 B
Text
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>
|