aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/admin/blog/settings
diff options
context:
space:
mode:
authorPhilip Arndt <parndt@gmail.com>2010-08-10 16:17:03 +1200
committerPhilip Arndt <parndt@gmail.com>2010-08-10 16:17:03 +1200
commita6b6a0da3477719e0109ad6175b16f04d37b2550 (patch)
tree3adf9305d598bb8764b24f30abb827dc6b64949e /app/views/admin/blog/settings
parent2e2b8bc9ba728091a58b93af6d72a34d9707cba7 (diff)
downloadrefinerycms-blog-a6b6a0da3477719e0109ad6175b16f04d37b2550.tar.gz
refinerycms-blog-a6b6a0da3477719e0109ad6175b16f04d37b2550.tar.bz2
refinerycms-blog-a6b6a0da3477719e0109ad6175b16f04d37b2550.zip
Better settings, update notified has a form but doesn't yet work. Created script files but not using them yet.
Diffstat (limited to 'app/views/admin/blog/settings')
-rw-r--r--app/views/admin/blog/settings/notification_recipients.html.erb24
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 %>