blob: 41e7f2d91627a09151c46bdf5455e853ab9f4342 (
plain) (
tree)
|
|
<%= form_tag do %>
<div class='field'>
<span class='label_with_help'>
<%= label_tag :recipients, t('.value') %>
</span>
<%= text_field_tag :recipients, @recipients, :class => "larger widest" %>
</div>
<p>
<%= t('.hint') %>
</p>
<p>
<%= t('.example') %>
</p>
<%= render :partial => "/shared/admin/form_actions",
:locals => {
:f => nil,
:continue_editing => false,
:cancel_url => admin_blog_posts_url,
:hide_delete => true
} %>
<% end %>
|