annotate .svn/pristine/4f/4fa7fccc7426be98fbf63234a686b801fe484128.svn-base @ 1327:287f201c2802 redmine-2.2-integration

Add italic
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Wed, 19 Jun 2013 20:56:22 +0100
parents cbb26bc654de
children
rev   line source
Chris@909 1 <div class="contextual">
Chris@909 2 <%= link_to(l(:label_history), {:action => 'history', :id => @page.title},
Chris@909 3 :class => 'icon icon-history') %>
Chris@909 4 </div>
Chris@909 5
Chris@909 6 <%= wiki_page_breadcrumb(@page) %>
Chris@909 7
Chris@909 8 <h2><%= h(@page.pretty_title) %></h2>
Chris@909 9
Chris@909 10 <p>
Chris@909 11 <%= l(:label_version) %> <%= link_to @diff.content_from.version, :action => 'show', :id => @page.title, :project_id => @page.project, :version => @diff.content_from.version %>
Chris@909 12 <em>(<%= @diff.content_from.author ?
Chris@909 13 @diff.content_from.author.name : l(:label_user_anonymous)
Chris@909 14 %>, <%= format_time(@diff.content_from.updated_on) %>)</em>
Chris@909 15 &#8594;
Chris@909 16 <%= l(:label_version) %> <%= link_to @diff.content_to.version, :action => 'show',
Chris@909 17 :id => @page.title, :project_id => @page.project,
Chris@909 18 :version => @diff.content_to.version
Chris@909 19 %>/<%= @page.content.version %>
Chris@909 20 <em>(<%= @diff.content_to.author ?
Chris@909 21 link_to_user(@diff.content_to.author.name) : l(:label_user_anonymous)
Chris@909 22 %>, <%= format_time(@diff.content_to.updated_on) %>)</em>
Chris@909 23 </p>
Chris@909 24
Chris@909 25 <div class="text-diff">
Chris@909 26 <%= simple_format_without_paragraph @diff.to_html %>
Chris@909 27 </div>