diff options
Diffstat (limited to 'app/views/admin/blog/settings/notification_recipients.html.erb')
-rw-r--r-- | app/views/admin/blog/settings/notification_recipients.html.erb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/views/admin/blog/settings/notification_recipients.html.erb b/app/views/admin/blog/settings/notification_recipients.html.erb new file mode 100644 index 0000000..ea36af1 --- /dev/null +++ b/app/views/admin/blog/settings/notification_recipients.html.erb @@ -0,0 +1,24 @@ +<% 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 %> |