diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-03-12 17:59:02 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-03-12 17:59:02 +0000 |
commit | 027bf93849e82ef3c60e4a3024db49d65f0fb3c9 (patch) | |
tree | c6bc438fcd50370944b94f605b3f34fe54b73248 /app/views/issue_statuses/list.rhtml | |
parent | 071f8e18d02f789149071abb8e052bae7ad01003 (diff) | |
download | redmine-027bf93849e82ef3c60e4a3024db49d65f0fb3c9.tar.gz redmine-027bf93849e82ef3c60e4a3024db49d65f0fb3c9.zip |
added svn:eol-style native property on /app files
git-svn-id: http://redmine.rubyforge.org/svn/trunk@333 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issue_statuses/list.rhtml')
-rw-r--r-- | app/views/issue_statuses/list.rhtml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/app/views/issue_statuses/list.rhtml b/app/views/issue_statuses/list.rhtml index 01617c329..973cc9c76 100644 --- a/app/views/issue_statuses/list.rhtml +++ b/app/views/issue_statuses/list.rhtml @@ -6,18 +6,18 @@ <table class="list"> <thead><tr> - <th><%=l(:field_status)%></th>
- <th><%=l(:field_is_default)%></th>
- <th><%=l(:field_is_closed)%></th>
+ <th><%=l(:field_status)%></th> + <th><%=l(:field_is_default)%></th> + <th><%=l(:field_is_closed)%></th> <th><%=l(:button_sort)%></th> <th></th> </tr></thead> <tbody> <% for status in @issue_statuses %> <tr class="<%= cycle("odd", "even") %>"> - <td><div class="square" style="background:#<%= status.html_color %>;"></div> <%= link_to status.name, :action => 'edit', :id => status %></td>
- <td align="center"><%= image_tag 'true.png' if status.is_default? %></td>
- <td align="center"><%= image_tag 'true.png' if status.is_closed? %></td>
+ <td><div class="square" style="background:#<%= status.html_color %>;"></div> <%= link_to status.name, :action => 'edit', :id => status %></td> + <td align="center"><%= image_tag 'true.png' if status.is_default? %></td> + <td align="center"><%= image_tag 'true.png' if status.is_closed? %></td> <td align="center"> <%= link_to image_tag('2uparrow.png', :alt => l(:label_sort_highest)), {:action => 'move', :id => status, :position => 'highest'}, :method => :post, :title => l(:label_sort_highest) %> <%= link_to image_tag('1uparrow.png', :alt => l(:label_sort_higher)), {:action => 'move', :id => status, :position => 'higher'}, :method => :post, :title => l(:label_sort_higher) %> - @@ -25,11 +25,11 @@ <%= link_to image_tag('2downarrow.png', :alt => l(:label_sort_lowest)), {:action => 'move', :id => status, :position => 'lowest'}, :method => :post, :title => l(:label_sort_lowest) %> </td> <td align="center"> - <%= button_to l(:button_delete), { :action => 'destroy', :id => status }, :confirm => l(:text_are_you_sure), :class => "button-small" %>
+ <%= button_to l(:button_delete), { :action => 'destroy', :id => status }, :confirm => l(:text_are_you_sure), :class => "button-small" %> </td> </tr> <% end %> </tbody> </table> -
+ <%= pagination_links_full @issue_status_pages %>
\ No newline at end of file |