diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-11-26 20:12:20 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-11-26 20:12:20 +0000 |
commit | 43fd27fd0ce4111501c36a6ef162aed61bf3318c (patch) | |
tree | 6a805a37c06baaba9a1c2935f32b22e6bca2cafb /app/views/documents | |
parent | f3bcb705f74622afae785d9df793a0bbed3a11d3 (diff) | |
download | redmine-43fd27fd0ce4111501c36a6ef162aed61bf3318c.tar.gz redmine-43fd27fd0ce4111501c36a6ef162aed61bf3318c.zip |
Show last update datetime (last attachment added) on document list (#4232).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3095 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/documents')
-rw-r--r-- | app/views/documents/_document.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/documents/_document.rhtml b/app/views/documents/_document.rhtml index 47b450000..94a64ac80 100644 --- a/app/views/documents/_document.rhtml +++ b/app/views/documents/_document.rhtml @@ -1,3 +1,3 @@ <p><%= link_to h(document.title), :controller => 'documents', :action => 'show', :id => document %><br /> <% unless document.description.blank? %><%=h(truncate(document.description, :length => 250)) %><br /><% end %> -<em><%= format_time(document.created_on) %></em></p>
\ No newline at end of file +<em><%= format_time(document.updated_on) %></em></p>
\ No newline at end of file |