diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-01-20 18:37:51 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-01-20 18:37:51 +0000 |
commit | df99d8f30801792560fc955ac36c2801e6aa5ff5 (patch) | |
tree | 967ec8ba76e959670fa5ef1586f7a0e6f9b247aa /app/views/admin | |
parent | d5b9dedca2298e8b95bbb8ac309ddfe8454a8c76 (diff) | |
download | redmine-df99d8f30801792560fc955ac36c2801e6aa5ff5.tar.gz redmine-df99d8f30801792560fc955ac36c2801e6aa5ff5.zip |
Unlimited and optional project description. The project list will show truncated descriptions only (the first fews lines).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1088 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/admin')
-rw-r--r-- | app/views/admin/projects.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/projects.rhtml b/app/views/admin/projects.rhtml index 3a759ecaa..d35c484b5 100644 --- a/app/views/admin/projects.rhtml +++ b/app/views/admin/projects.rhtml @@ -27,7 +27,7 @@ <% for project in @projects %> <tr class="<%= cycle("odd", "even") %>"> <td><%= project.active? ? link_to(h(project.name), :controller => 'projects', :action => 'settings', :id => project) : h(project.name) %> - <td><%= textilizable project.description, :project => project %> + <td><%= textilizable project.short_description, :project => project %> <td align="center"><%= image_tag 'true.png' if project.is_public? %> <td align="center"><%= project.children.size %> <td align="center"><%= format_date(project.created_on) %> |