foodsoft/app/views/article_categories/index.html.haml

18 lines
644 B
Plaintext
Raw Normal View History

2009-01-18 17:42:51 +01:00
- title "Artikelkategorien"
2012-10-29 17:35:50 +01:00
%p= link_to "Neue Kategorie anlegen", new_article_category_path, class: 'btn btn-primary'
%table.table.table-striped
%tr
%th Name
%th Beschreibung
%th
- for article_category in ArticleCategory.all
%tr{:class => cycle("even","odd", :name => 'category')}[article_category]
%td= article_category.name
%td= article_category.description
%td
= link_to "Bearbeiten", edit_article_category_path(article_category), class: 'btn btn-mini'
= link_to "Löschen", article_category, :method => :delete, :confirm => 'Are you sure?',
class: 'btn btn-mini btn-danger'