10 lines
405 B
Plaintext
10 lines
405 B
Plaintext
|
<%= form_for @category, :url => admin_module_app_category_path(@module_app_id, @category), remote: true do |f| %>
|
||
|
<fieldset>
|
||
|
<%= render :partial => 'form', :locals => {:f => f} %>
|
||
|
</fieldset>
|
||
|
<div class="form-actions">
|
||
|
<a href="javascript:$.pageslide.close()" class="btn btn-small"><%= t(:cancel) %></a>
|
||
|
<%= f.submit t(:update_), class: 'btn btn-primary btn-small' %>
|
||
|
</div>
|
||
|
<% end %>
|