kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.9 KiB
46 lines
1.9 KiB
13 years ago
|
<h2><%= h(@page.pretty_title) %></h2>
|
||
18 years ago
|
|
||
|
<h3><%= l(:label_history) %></h3>
|
||
|
|
||
18 years ago
|
<% form_tag({:action => "diff"}, :method => :get) do %>
|
||
14 years ago
|
<table class="list wiki-page-versions">
|
||
18 years ago
|
<thead><tr>
|
||
|
<th>#</th>
|
||
18 years ago
|
<th></th>
|
||
14 years ago
|
<th></th>
|
||
18 years ago
|
<th><%= l(:field_updated_on) %></th>
|
||
|
<th><%= l(:field_author) %></th>
|
||
18 years ago
|
<th><%= l(:field_comments) %></th>
|
||
17 years ago
|
<th></th>
|
||
18 years ago
|
</tr></thead>
|
||
|
<tbody>
|
||
18 years ago
|
<% show_diff = @versions.size > 1 %>
|
||
|
<% line_num = 1 %>
|
||
18 years ago
|
<% @versions.each do |ver| %>
|
||
14 years ago
|
<tr class="wiki-page-version <%= cycle("odd", "even") %>">
|
||
13 years ago
|
<td class="id"><%= link_to h(ver.version), :action => 'show', :id => @page.title, :project_id => @page.project, :version => ver.version %></td>
|
||
13 years ago
|
<td class="checkbox">
|
||
|
<% if show_diff && (line_num < @versions.size) %>
|
||
13 years ago
|
<label for="<%="cb-#{line_num}"%>" class="hidden-for-sighted"><%=l(:description_compare_from) + " " + h(ver.version.to_s) %></label>
|
||
13 years ago
|
<%= radio_button_tag('version', ver.version, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('cbto-#{line_num+1}').checked=true;") %>
|
||
|
<% end %>
|
||
|
</td>
|
||
|
<td class="checkbox">
|
||
|
<% if show_diff && (line_num > 1) %>
|
||
13 years ago
|
<label for="<%="cbto-#{line_num}"%>" class="hidden-for-sighted"><%=l(:description_compare_to) + " " + h(ver.version.to_s) %></label>
|
||
13 years ago
|
<%= radio_button_tag('version_from', ver.version, (line_num==2), :id => "cbto-#{line_num}") %>
|
||
|
<% end %>
|
||
|
</td>
|
||
14 years ago
|
<td class="updated_on"><%= format_time(ver.created_at) %></td>
|
||
|
<td class="author"><%= link_to_user ver.user %></td>
|
||
|
<td class="comments"><%=h ver.notes %></td>
|
||
14 years ago
|
<td class="buttons"><%= link_to l(:button_annotate), :action => 'annotate', :id => @page.title, :version => ver.version %></td>
|
||
18 years ago
|
</tr>
|
||
18 years ago
|
<% line_num += 1 %>
|
||
18 years ago
|
<% end %>
|
||
|
</tbody>
|
||
|
</table>
|
||
16 years ago
|
<%= submit_tag l(:label_view_diff), :class => 'small' if show_diff %>
|
||
17 years ago
|
<span class="pagination"><%= pagination_links_full @version_pages, @version_count, :page_param => :p %></span>
|
||
18 years ago
|
<% end %>
|