ensl.org/app/views/shoutmsgs/_new.html.erb
2014-04-09 01:50:07 +01:00

19 lines
706 B
Text

<% if cuser %>
<% if cuser.banned? Ban::TYPE_MUTE %>
You have been muted.
<% else %>
<% scroll = shoutmsg.domain == "shoutbox" ? "" : "$('#{shoutmsg.domain}').scrollTop = $('#{shoutmsg.domain}').scrollHeight;" %>
<%= form_for(shoutmsg, remote: true, html: { id: "new_#{shoutmsg.domain}" }) do |f| %>
<% if shoutmsg.shoutable %>
<%= f.hidden_field :shoutable_type %>
<%= f.hidden_field :shoutable_id %>
<% end %>
<div class="fields">
<%= f.text_field :text, size: 12, id: "#{shoutmsg.domain}_text", class: "shout_input" %>
</div>
<div class="controls">
<%= submit_tag "Shout!" %>
</div>
<% end %>
<% end %>
<% end %>