##// END OF EJS Templates
Preserve uploaded files when on documents....
Preserve uploaded files when on documents. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8944 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7770:68f3e91bd703
r8824:8f24aa6c676b
Show More
index.html.erb
42 lines | 1.6 KiB | text/plain | TextLexer
Jean-Philippe Lang
contextual links redesign...
r90 <div class="contextual">
Jean-Philippe Lang
Resourcified issue statuses....
r7770 <%= link_to l(:label_issue_status_new), new_issue_status_path, :class => 'icon icon-add' %>
<%= link_to(l(:label_update_issue_done_ratios), update_issue_done_ratio_issue_statuses_path, :class => 'icon icon-multiple', :method => 'post', :confirm => l(:text_are_you_sure)) if Issue.use_status_for_done_ratio? %>
Jean-Philippe Lang
contextual links redesign...
r90 </div>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_issue_status_plural)%></h2>
Toshi MARUYAMA
remove trailing white-spaces from app/views/issue_statuses/index.html.erb....
r6219
Jean-Philippe Lang
css cleaning...
r105 <table class="list">
<thead><tr>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <th><%=l(:field_status)%></th>
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 <% if Issue.use_status_for_done_ratio? %>
<th><%=l(:field_done_ratio)%></th>
<% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <th><%=l(:field_is_default)%></th>
<th><%=l(:field_is_closed)%></th>
Jean-Philippe Lang
added the ability to set the sort order for issue statuses...
r202 <th><%=l(:button_sort)%></th>
Jean-Philippe Lang
Initial commit...
r2 <th></th>
Jean-Philippe Lang
css cleaning...
r105 </tr></thead>
Toshi MARUYAMA
remove trailing white-spaces from app/views/issue_statuses/index.html.erb....
r6219 <tbody>
Jean-Philippe Lang
Initial commit...
r2 <% for status in @issue_statuses %>
Jean-Philippe Lang
v0.2.0...
r5 <tr class="<%= cycle("odd", "even") %>">
Jean-Philippe Lang
Resourcified issue statuses....
r7770 <td><%= link_to h(status.name), edit_issue_status_path(status) %></td>
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 <% if Issue.use_status_for_done_ratio? %>
<td align="center"><%= h status.default_done_ratio %></td>
<% end %>
Jean-Philippe Lang
Adds an helper for displaying the 'checked' image....
r3486 <td align="center"><%= checked_image status.is_default? %></td>
<td align="center"><%= checked_image status.is_closed? %></td>
Jean-Philippe Lang
Resourcified issue statuses....
r7770 <td align="center" style="width:15%;"><%= reorder_links('issue_status', {:action => 'update', :id => status}, :put) %></td>
Jean-Philippe Lang
Makes 'delete links' the same on admin views....
r2758 <td class="buttons">
Jean-Philippe Lang
Resourcified issue statuses....
r7770 <%= link_to(l(:button_delete), issue_status_path(status),
:method => :delete,
Toshi MARUYAMA
replace tabs to spaces at app/views/issue_statuses/index.html.erb...
r7173 :confirm => l(:text_are_you_sure),
:class => 'icon icon-del') %>
Jean-Philippe Lang
Initial commit...
r2 </td>
</tr>
<% end %>
Jean-Philippe Lang
css cleaning...
r105 </tbody>
Jean-Philippe Lang
Initial commit...
r2 </table>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
New setting added to specify how many objects should be displayed on most paginated lists....
r1013 <p class="pagination"><%= pagination_links_full @issue_status_pages %></p>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_issue_status_plural)) -%>