orbit-basic/app/views/admin/tags/_edit.html.erb

10 lines
367 B
Plaintext

<%= form_for @tag, url: admin_tag_path(@tag), remote: true do |f| %>
<fieldset>
<%= render partial: "form", :locals => { :f => f } %>
<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>
</fieldset>
<% end %>