gitlabhq/app/views/wikis/index.html.haml
2012-02-19 19:50:13 +02:00

22 lines
373 B
Plaintext

%h1 Listing wikis
%table
%tr
%th Title
%th Content
%th
%th
%th
- @wikis.each do |wiki|
%tr
%td= wiki.title
%td= wiki.content
%td= link_to 'Show', wiki
%td= link_to 'Edit', edit_wiki_path(wiki)
%td= link_to 'Destroy', wiki, :confirm => 'Are you sure?', :method => :delete
%br
= link_to 'New Wiki', new_wiki_path