aboutsummaryrefslogblamecommitdiffstats
path: root/app/views/admin/blog/categories/_form.html.erb
blob: 4f1809a3a4f5cbb0e9c3852edd17aecfacf2049c (plain) (tree)
1
2
3
4
5
6
7
                                               




                                                        
 








                                                          
                                                                           
                  
         
<% form_for [:admin, @blog_category] do |f| -%>
  <%= render :partial => "/shared/admin/error_messages",
             :locals => {
               :object => f.object,
               :include_object_name => true
             } %>

  <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.blog.categories.category.delete')
              } %>
<% end %>