gitlab-org--gitlab-foss/app/views/projects/wikis/history.html.haml
Hiroyuki Sato bca528a57c Better title format for wiki page
The title format for wiki page may be unintelligible.
For example 'GitLab' is converted to 'Git Lab', 'MySQL' is converted to
'My Sql', etc.
2014-04-10 15:14:02 +09:00

29 lines
737 B
Text

= render 'nav'
%h3.page-title
%span.light History for
= link_to @page.title, project_wiki_path(@project, @page)
%table.table
%thead
%tr
%th Page version
%th Author
%th Commit Message
%th Last updated
%th Format
%tbody
- @page.versions.each do |version|
- commit = version
%tr
%td
= link_to project_wiki_path(@project, @page, version_id: commit.id) do
= commit.short_id
%td
= commit_author_link(commit, avatar: true, size: 24)
%td
= commit.title
%td
#{time_ago_with_tooltip(version.date)}
%td
%strong
= @page.page.wiki.page(@page.page.name, commit.id).try(:format)