ensl.org/app/views/widgets/_shoutbox.html.erb

13 lines
557 B
Text
Raw Normal View History

2014-04-06 14:14:03 +00:00
<div class="widget shoutbox">
<h4><%= t('widget.shoutbox') %></h4>
<div class="widget-content-wrapper">
<div class="transcript">
<%= render :partial => "shoutmsgs/shoutmsg", :collection => Shoutmsg.recent.box, :locals => {:popup => "$('shoutbox')"} %>
2014-04-06 14:14:03 +00:00
</div>
</div>
<%= render :partial => "shoutmsgs/new", :locals => { :shoutmsg => Shoutmsg.new } %>
<p>
<%= link_to "Shoutbox Recent History", :controller => :shoutmsgs, :action => "index" %><br/>
<%= link_to "Shoutbox Rules", article_path(Article::SB_RULES) %>
</p>
2014-04-06 14:14:03 +00:00
</div>