15 lines
334 B
Text
15 lines
334 B
Text
|
%h2 Versions
|
||
|
%table
|
||
|
%thead
|
||
|
%tr
|
||
|
%th #
|
||
|
%th last edit
|
||
|
%th created by
|
||
|
%tbody
|
||
|
- @wikis.each_with_index do |wiki_page, i|
|
||
|
%tr
|
||
|
%td= i + 1
|
||
|
%td= link_to wiki_page.created_at.to_s(:short), project_wiki_path(@project, wiki_page, :old_page_id => wiki_page.id)
|
||
|
%td= wiki_page.user.name
|
||
|
|