welcome.rhtml
613 Bytes
<% if @enterprise && logged_in? %>
<h1><%= _('Welcome to %s') % environment.name %></h1>
<%= __('%s was successfuly activated. Now you may go to your control panel or to the control panel of your enterprise') % @enterprise.name %>
<% button_bar do %>
<%= button 'forward', _('Go to my control panel'), :action => 'index', :controller => 'profile_editor', :profile => current_user.person.identifier %>
<%= button 'forward', __('Go to my enterprise control panel') % @enterprise.name, :action => 'index', :controller => 'profile_editor', :profile => @enterprise.identifier %>
<% end %>
<% end %>