##// END OF EJS Templates
Raise the height of text custom fields....
Raise the height of text custom fields. git-svn-id: http://svn.redmine.org/redmine/trunk@16252 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15867:9814dcf231b5
r15870:8e4cb42f8e06
Show More
_list.html.erb
63 lines | 2.5 KiB | text/plain | TextLexer
Jean-Philippe Lang
Don't use a global variable for storing context menu URL....
r15554 <%= form_tag({}, :data => {:cm_url => time_entries_context_menu_path}) do -%>
Jean-Philippe Lang
Don't generate back url with params....
r15247 <%= hidden_field_tag 'back_url', url_for(:params => request.query_parameters), :id => nil %>
Jean-Philippe Lang
Adds an autoscroll div around time entry list and report (#8809)....
r7862 <div class="autoscroll">
Jean-Philippe Lang
Use css pseudo-classes instead of cycle("odd", "even") (#15361)....
r15867 <table class="list odd-even time-entries">
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 <thead>
Jean-Philippe Lang
Makes time entry custom fields available for display on the time entries list (#1766)....
r10745 <tr>
<th class="checkbox hide-when-print">
Jean-Philippe Lang
Replaces the link with a checkbox to select/unselect all items in the list....
r14347 <%= check_box_tag 'check_all', '', false, :class => 'toggle-selection',
Jean-Philippe Lang
Makes time entry custom fields available for display on the time entries list (#1766)....
r10745 :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %>
</th>
<% @query.inline_columns.each do |column| %>
<%= column_header(column) %>
<% end %>
<th></th>
</tr>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 </thead>
<tbody>
Jean-Philippe Lang
Make time entries groupable (#16843)....
r15267 <% grouped_query_results(entries, @query, @entry_count_by_group) do |entry, group_name, group_count, group_totals| -%>
<% if group_name %>
Jean-Philippe Lang
Reverts r16051 and r16050 for now (#15361)....
r15670 <% reset_cycle %>
Jean-Philippe Lang
Make time entries groupable (#16843)....
r15267 <tr class="group open">
<td colspan="<%= @query.inline_columns.size + 2 %>">
<span class="expander" onclick="toggleRowGroup(this);">&nbsp;</span>
<span class="name"><%= group_name %></span>
<% if group_count %>
<span class="count"><%= group_count %></span>
<% end %>
<span class="totals"><%= group_totals %></span>
<%= link_to_function("#{l(:button_collapse_all)}/#{l(:button_expand_all)}",
"toggleAllRowGroups(this)", :class => 'toggle-all') %>
</td>
</tr>
<% end %>
Jean-Philippe Lang
Reverts r16051 and r16050 for now (#15361)....
r15670 <tr id="time-entry-<%= entry.id %>" class="time-entry <%= cycle("odd", "even") %> hascontextmenu">
Jean-Philippe Lang
Makes time entry custom fields available for display on the time entries list (#1766)....
r10745 <td class="checkbox hide-when-print"><%= check_box_tag("ids[]", entry.id, false, :id => nil) %></td>
<%= raw @query.inline_columns.map {|column| "<td class=\"#{column.css_classes}\">#{column_content(column, entry)}</td>"}.join %>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td class="buttons">
Jean-Philippe Lang
Makes time entry custom fields available for display on the time entries list (#1766)....
r10745 <% if entry.editable_by?(User.current) -%>
Jean-Philippe Lang
Improve accessibility for icon-only links by adding hidden text (#21805)....
r14889 <%= link_to l(:button_edit), edit_time_entry_path(entry),
Jean-Philippe Lang
Replace uses of image_tag() with CSS (#21256)....
r14686 :title => l(:button_edit),
Jean-Philippe Lang
Improve accessibility for icon-only links by adding hidden text (#21805)....
r14889 :class => 'icon-only icon-edit' %>
<%= link_to l(:button_delete), time_entry_path(entry),
Jean-Philippe Lang
Replace uses of image_tag() with CSS (#21256)....
r14686 :data => {:confirm => l(:text_are_you_sure)},
:method => :delete,
:title => l(:button_delete),
:class => 'icon-only icon-del' %>
Jean-Philippe Lang
Makes time entry custom fields available for display on the time entries list (#1766)....
r10745 <% end -%>
</td>
</tr>
Jean-Philippe Lang
Make time entries groupable (#16843)....
r15267 <% @query.block_columns.each do |column|
if (text = column_content(column, issue)) && text.present? -%>
<tr class="<%= current_cycle %>">
<td colspan="<%= @query.inline_columns.size + 1 %>" class="<%= column.css_classes %>"><%= text %></td>
</tr>
<% end -%>
<% end -%>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 <% end -%>
Jean-Philippe Lang
Time report can be done at issue level (closes #970) + timelog views xhtml validation....
r1304 </tbody>
Jean-Philippe Lang
Adds date range filter and pagination on time entries detail view (closes #434)....
r1159 </table>
Jean-Philippe Lang
Adds an autoscroll div around time entry list and report (#8809)....
r7862 </div>
Toshi MARUYAMA
add bulk edit items and context menu in time entries list view (#7996)....
r5194 <% end -%>
Jean-Philippe Lang
Don't use a global variable for storing context menu URL....
r15554 <%= context_menu %>