Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

_notifications.html.erb 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <% if @deliveries %>
  2. <%= form_tag({:action => 'edit', :tab => 'notifications'}) do %>
  3. <div class="box tabular settings">
  4. <p><%= setting_text_field :mail_from, :size => 60 %></p>
  5. <p><%= setting_check_box :bcc_recipients %></p>
  6. <p><%= setting_check_box :plain_text_mail %></p>
  7. <p><%= setting_check_box :show_status_changes_in_mail_subject %></p>
  8. </div>
  9. <fieldset class="box" id="notified_events"><legend><%=l(:text_select_mail_notifications)%></legend>
  10. <%= hidden_field_tag 'settings[notified_events][]', '' %>
  11. <% @notifiables.each do |notifiable| %>
  12. <%= notification_field notifiable %>
  13. <br />
  14. <% end %>
  15. <p><%= check_all_links('notified_events') %></p>
  16. </fieldset>
  17. <fieldset class="box"><legend><%= l(:setting_emails_header) %></legend>
  18. <%= setting_text_area :emails_header, :label => false, :class => 'wiki-edit', :rows => 5 %>
  19. </fieldset>
  20. <fieldset class="box"><legend><%= l(:setting_emails_footer) %></legend>
  21. <%= setting_text_area :emails_footer, :label => false, :class => 'wiki-edit', :rows => 5 %>
  22. </fieldset>
  23. <div style="float:right;">
  24. <%= link_to l(:label_send_test_email), test_email_path, :method => :post %>
  25. </div>
  26. <%= submit_tag l(:button_save) %>
  27. <% end %>
  28. <% else %>
  29. <div class="nodata">
  30. <%= simple_format(l(:text_email_delivery_not_configured)) %>
  31. </div>
  32. <% end %>