19 lines
396 B
Plaintext
19 lines
396 B
Plaintext
|
<% 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 -%>
|
||
|
|
||
|
<h1>Users panel</h1>
|
||
|
|
||
|
<% form_for @user, :url => panel_user_path(@user) do |f| %>
|
||
|
|
||
|
<%= render :partial => 'form', :locals => { :f => f } %>
|
||
|
|
||
|
<p>
|
||
|
<%= f.submit %>
|
||
|
</p>
|
||
|
|
||
|
<% end -%>
|
||
|
|