Noosfero/noosfero

View on GitHub
app/views/profile_editor/welcome_page.html.erb

Summary

Maintainability
Test Coverage
<h1><%= _('Edit welcome page') %></h1>

<%= labelled_form_for :welcome_page do |f| %>
  <%= error_messages_for :welcome_page %>

  <%= f.check_box(:published) %>
  <div class='explanation'>
    <%= _('Your welcome page will only be displayed if this options is selected.') %>
  </div>

  <%= f.text_area(:body, :cols => 40, :style => 'width: 100%', :class => current_editor) %>
  <div class='explanation'>
    <%= _('This page will be displayed to the user after his signup with this template.') %>
  </div>

  <%= button_bar do%>
    <%= submit_button(:save,  _('Save'), :cancel => @back_to) %>
  <% end %>
<% end %>