add.rhtml
475 Bytes
<h1><%= __('Adding %s as a favorite enterprise') % @favorite_enterprise.name %></h1>
<p>
<%= __('Are you sure you want to add %s as your favorite enterprise?') % @favorite_enterprise.name %>
</p>
<% form_tag do %>
<%= hidden_field_tag(:confirmation, 1) %>
<%= submit_button(:ok, __("Yes, I am sure"), :title => _("I want to add %s as a favorite enterprise") % @favorite_enterprise.name) %>
<%= button(:cancel, _("No, I don't want"), :action => 'index') %>
<% end %>