##// END OF EJS Templates
Option for long text custom fields to be displayed under the description field (#21705)....
Option for long text custom fields to be displayed under the description field (#21705). Based on patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@16251 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15867:9814dcf231b5
r15869:b40d66f39fa8
Show More
index.html.erb
38 lines | 1.0 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
Code cleanup, use named routes....
r10848 <%= link_to l(:field_summary), fields_trackers_path, :class => 'icon icon-summary' %>
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
Lists can be reordered with drag and drop (#12909)....
r14954 <table class="list trackers">
Jean-Philippe Lang
css cleaning...
r105 <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
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
Use css pseudo-classes instead of cycle("odd", "even") (#15361)....
r15867 <tr>
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <td class="name"><%= link_to tracker.name, edit_tracker_path(tracker) %></td>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td>
Jean-Philippe Lang
Use exists? instead of count (#24839)....
r15829 <% unless tracker.workflow_rules.exists? %>
Jean-Philippe Lang
Code cleanup, use named routes....
r10848 <span class="icon icon-warning">
<%= l(:text_tracker_no_workflow) %> (<%= link_to l(:button_edit), workflows_edit_path(:tracker_id => tracker) %>)
</span>
<% end %>
</td>
Jean-Philippe Lang
Makes 'delete links' the same on admin views....
r2758 <td class="buttons">
Jean-Philippe Lang
Lists can be reordered with drag and drop (#12909)....
r14954 <%= reorder_handle(tracker) %>
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 <%= delete_link tracker_path(tracker) %>
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
Slight improvements to the browser views....
r1019 <% html_title(l(:label_tracker_plural)) -%>
Jean-Philippe Lang
Lists can be reordered with drag and drop (#12909)....
r14954
<%= javascript_tag do %>
$(function() { $("table.trackers tbody").positionedItems(); });
<% end %>