##// END OF EJS Templates
Adds missing route to project search....
Adds missing route to project search. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9371 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7768:6577f37fc3c3
r9237:d2cb9d5289e4
Show More
index.html.erb
33 lines | 1.2 KiB | text/plain | TextLexer
Jean-Philippe Lang
contextual links redesign...
r90 <div class="contextual">
Jean-Philippe Lang
Resourcified trackers....
r7768 <%= link_to l(:label_tracker_new), new_tracker_path, :class => 'icon icon-add' %>
Jean-Philippe Lang
contextual links redesign...
r90 </div>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_tracker_plural)%></h2>
Jean-Philippe Lang
Initial commit...
r2
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(:label_tracker)%></th>
Jean-Philippe Lang
Added a warning message on tracker list for trackers that don't have any workflow defined....
r427 <th></th>
Jean-Philippe Lang
added the ability to set the sort order for trackers...
r206 <th><%=l(:button_sort)%></th>
Jean-Philippe Lang
Initial commit...
r2 <th></th>
Jean-Philippe Lang
css cleaning...
r105 </tr></thead>
<tbody>
Jean-Philippe Lang
Initial commit...
r2 <% for tracker in @trackers %>
Jean-Philippe Lang
v0.2.0...
r5 <tr class="<%= cycle("odd", "even") %>">
Jean-Philippe Lang
Resourcified trackers....
r7768 <td><%= link_to h(tracker.name), edit_tracker_path(tracker) %></td>
Jean-Philippe Lang
Fixes workflow setup link on trackers list (follows r1914)....
r1913 <td align="center"><% unless tracker.workflows.count > 0 %><span class="icon icon-warning"><%= l(:text_tracker_no_workflow) %> (<%= link_to l(:button_edit), {:controller => 'workflows', :action => 'edit', :tracker_id => tracker} %>)</span><% end %></td>
Jean-Philippe Lang
Resourcified trackers....
r7768 <td align="center" style="width:15%;"><%= reorder_links('tracker', {:action => 'update', :id => tracker}, :put) %></td>
Jean-Philippe Lang
Makes 'delete links' the same on admin views....
r2758 <td class="buttons">
Jean-Philippe Lang
Resourcified trackers....
r7768 <%= link_to(l(:button_delete), tracker_path(tracker),
:method => :delete,
Toshi MARUYAMA
replace tabs to spaces at app/views/trackers/index.html.erb....
r6380 :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 @tracker_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_tracker_plural)) -%>