diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-12-17 14:22:09 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-12-17 14:22:09 +0000 |
commit | 918123cd0663803a6e392c6c9ce209d10c8e5603 (patch) | |
tree | 86cff407524e2d7fc6d987aebbea0fcda90e2076 /app/views/projects/changelog.rhtml | |
parent | 2b86ef8e28d0e5376197391c29a8fb302f14820f (diff) | |
download | redmine-918123cd0663803a6e392c6c9ce209d10c8e5603.tar.gz redmine-918123cd0663803a6e392c6c9ce209d10c8e5603.zip |
* code and views cleaning
* javascript added on custom field form to show/hide fields according to the format of custom field
git-svn-id: http://redmine.rubyforge.org/svn/trunk@100 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/projects/changelog.rhtml')
-rw-r--r-- | app/views/projects/changelog.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/changelog.rhtml b/app/views/projects/changelog.rhtml index e59df059d..250957a8c 100644 --- a/app/views/projects/changelog.rhtml +++ b/app/views/projects/changelog.rhtml @@ -17,12 +17,12 @@ @fixed_issues.each do |issue| %>
<% unless ver_id == issue.fixed_version_id %>
<% if ver_id %></ul><% end %>
- <h3><%= l(:label_version) %>: <%= issue.fixed_version.name %></h3>
+ <h3><%= issue.fixed_version.name %></h3>
<p><%= format_date(issue.fixed_version.effective_date) %><br />
<%=h issue.fixed_version.description %></p>
<ul>
<% ver_id = issue.fixed_version_id
end %>
- <li><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %> [<%= issue.tracker.name %>]: <%=h issue.subject %></li>
+ <li><%= link_to "#{issue.tracker.name} #{issue.id}", :controller => 'issues', :action => 'show', :id => issue %>: <%=h issue.subject %></li>
<% end %>
</div>
\ No newline at end of file |