aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/admin/blog/categories/_form.html.erb
blob: f1ee0bc9203bccac7f5bdfb6ddc53f1e0eb3eee6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<% form_for [:admin, @blog_category] do |f| -%>
  <%= f.error_messages %>

  <div class='field'>
    <%= f.label :title -%>
    <%= f.text_field :title, :class => 'larger widest' -%>
  </div>

  <%= render :partial => "/shared/admin/form_actions",
              :locals => {
                :f => f,
                :continue_editing => false,
                :delete_title => t('admin.blogs.categories.delete')
              } %>
<% end %>