|
@@
-14,7
+14,7
|
|
14
|
<td><%= link_to h(version.name), :controller => 'versions', :action => 'show', :id => version %></td>
|
|
14
|
<td><%= link_to h(version.name), :controller => 'versions', :action => 'show', :id => version %></td>
|
|
15
|
<td align="center"><%= format_date(version.effective_date) %></td>
|
|
15
|
<td align="center"><%= format_date(version.effective_date) %></td>
|
|
16
|
<td><%=h version.description %></td>
|
|
16
|
<td><%=h version.description %></td>
|
|
17
|
<td><%= link_to(version.wiki_page_title, :controller => 'wiki', :page => Wiki.titleize(version.wiki_page_title)) unless version.wiki_page_title.blank? || @project.wiki.nil? %></td>
|
|
17
|
<td><%= link_to(h(version.wiki_page_title), :controller => 'wiki', :page => Wiki.titleize(version.wiki_page_title)) unless version.wiki_page_title.blank? || @project.wiki.nil? %></td>
|
|
18
|
<td align="center"><%= link_to_if_authorized l(:button_edit), { :controller => 'versions', :action => 'edit', :id => version }, :class => 'icon icon-edit' %></td>
|
|
18
|
<td align="center"><%= link_to_if_authorized l(:button_edit), { :controller => 'versions', :action => 'edit', :id => version }, :class => 'icon icon-edit' %></td>
|
|
19
|
<td align="center"><%= link_to_if_authorized l(:button_delete), {:controller => 'versions', :action => 'destroy', :id => version}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %></td>
|
|
19
|
<td align="center"><%= link_to_if_authorized l(:button_delete), {:controller => 'versions', :action => 'destroy', :id => version}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %></td>
|
|
20
|
</tr>
|
|
20
|
</tr>
|