mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-16 01:41:23 +00:00
f2d908a06f
Added styling to gathers page Added styling to account page Improved forms styling
12 lines
342 B
Text
12 lines
342 B
Text
<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>
|