Fixed article categories.

This commit is contained in:
benni 2012-10-29 17:35:50 +01:00
parent fc1c173718
commit 27c719d8da
2 changed files with 18 additions and 18 deletions

View file

@ -1,4 +1,6 @@
= simple_form_for @article_category do |f| = simple_form_for @article_category do |f|
= f.input :name = f.input :name
= f.input :description = f.input :description
= f.submit .form-actions
= f.submit class: 'btn'
= link_to 'oder abbrechen', article_categories_path

View file

@ -1,10 +1,8 @@
- title "Artikelkategorien" - title "Artikelkategorien"
.left_column{:style => "width:50em"} %p= link_to "Neue Kategorie anlegen", new_article_category_path, class: 'btn btn-primary'
.box_title
%h2 Artikelkategorien %table.table.table-striped
.column_content#categories
%table
%tr %tr
%th Name %th Name
%th Beschreibung %th Beschreibung
@ -14,6 +12,6 @@
%td= article_category.name %td= article_category.name
%td= article_category.description %td= article_category.description
%td %td
= link_to icon(:edit), edit_article_category_path(article_category) = link_to "Bearbeiten", edit_article_category_path(article_category), class: 'btn btn-mini'
= link_to icon(:delete), article_category, :method => :delete, :confirm => 'Are you sure?' = link_to "Löschen", article_category, :method => :delete, :confirm => 'Are you sure?',
%p= link_to 'Neue Kategorie anlegen', new_article_category_path class: 'btn btn-mini btn-danger'