diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-17 11:21:58 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-17 11:21:58 +0000 |
commit | 7b366758fdc4867d4f5174e924464fffdcda6a72 (patch) | |
tree | 492bc8b302664fd3ee28ca0e646efcbe6a7feb7d /app/views/projects/list.rhtml | |
parent | a7033c8bacdaf476d79a40ac0311bac0c177ae62 (diff) | |
download | redmine-7b366758fdc4867d4f5174e924464fffdcda6a72.tar.gz redmine-7b366758fdc4867d4f5174e924464fffdcda6a72.zip |
Textilized project descriptions on project list and home page.
Added jsToolbar on project form.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@651 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/projects/list.rhtml')
-rw-r--r-- | app/views/projects/list.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/list.rhtml b/app/views/projects/list.rhtml index 54cc78738..24448be48 100644 --- a/app/views/projects/list.rhtml +++ b/app/views/projects/list.rhtml @@ -11,7 +11,7 @@ <tr class="<%= cycle("odd", "even") %>"> <td> <%= link_to project.name, {:action => 'show', :id => project}, :class => (@logged_in_user && @logged_in_user.role_for_project(project) ? "icon icon-fav" : "") %><br /> - <%=h project.description %> + <%= textilizable project.description, :project => project %> </td> <td><%= link_to(project.parent.name, :action => 'show', :id => project.parent) unless project.parent.nil? %></td> <td align="center"><%= format_date(project.created_on) %></td> |