git-svn-id: http://redmine-dmsf.googlecode.com/svn/trunk/redmine_dmsf@4 5e329b0b-a2ee-ea63-e329-299493fc886d
21 lines
858 B
Plaintext
21 lines
858 B
Plaintext
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html>
|
|
<head>
|
|
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
|
|
</head>
|
|
<body>
|
|
User <%= @user %> actualized following files in project <%= @project.name %>:
|
|
<% @files.each do |file| %>
|
|
<p>
|
|
<%= link_to(h(file.dmsf_path_str),
|
|
{:only_path => false, :controller => "dmsf", :action => "download_file", :id => file.project,
|
|
:file_id => file}) %>
|
|
(<%= number_to_human_size(file.last_revision.size) %>),
|
|
version: <%= file.last_revision.major_version %>.<%= file.last_revision.minor_version %>,
|
|
<%= link_to("Details",
|
|
{:only_path => false, :controller => "dmsf_detail", :action => "file_detail", :id => file.project,
|
|
:file_id => file }) %>
|
|
</p>
|
|
<% end %>
|
|
</body>
|
|
</html> |