diff options
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 f267c136e..62db29a32 100644 --- a/app/views/admin/projects.rhtml +++ b/app/views/admin/projects.rhtml @@ -29,7 +29,7 @@ <tr class="<%= cycle("odd", "even") %> <%= css_project_classes(project) %>"> <td class="name" style="padding-left: <%= level %>em;"><%= project.active? ? link_to(h(project.name), :controller => 'projects', :action => 'settings', :id => project) : h(project.name) %></td> <td><%= textilizable project.short_description, :project => project %></td> - <td align="center"><%= image_tag 'true.png' if project.is_public? %></td> + <td align="center"><%= checked_image project.is_public? %></td> <td align="center"><%= format_date(project.created_on) %></td> <td class="buttons"> <%= link_to(l(:button_archive), { :controller => 'projects', :action => 'archive', :id => project, :status => params[:status] }, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-lock') if project.active? %> |