2010-03-04 08:33:26 +00:00
|
|
|
<% content_for :secondary do %>
|
|
|
|
<ul class="list">
|
|
|
|
<li><%= link_to t(:new_user, :scope => :panel), new_panel_user_path, :class => 'button positive' %></li>
|
|
|
|
</ul>
|
|
|
|
<% end -%>
|
|
|
|
|
2011-02-08 06:51:49 +00:00
|
|
|
<%= flash_messages %>
|
|
|
|
|
2011-04-13 10:19:51 +00:00
|
|
|
<h1><%= t('panel.user_panel') %></h1>
|
2010-03-04 08:33:26 +00:00
|
|
|
|
2011-04-13 10:19:51 +00:00
|
|
|
<%= form_for @user, :url => panel_user_path(@user), :html => { :multipart => true } do |f| %>
|
|
|
|
<%= f.error_messages %>
|
2010-03-04 08:33:26 +00:00
|
|
|
<%= render :partial => 'form', :locals => { :f => f } %>
|
|
|
|
|
|
|
|
<p>
|
2011-04-13 10:19:51 +00:00
|
|
|
<%= f.submit t(:update) %> <%= link_back %>
|
2010-03-04 08:33:26 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<% end -%>
|