##// END OF EJS Templates
css cleaning...
css cleaning git-svn-id: http://redmine.rubyforge.org/svn/trunk@108 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r105:d3600e729fbc
r105:d3600e729fbc
Show More
list_issues.rhtml
80 lines | 3.7 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
"queries" branch merged...
r92 <% if @query.new_record? %>
<h2><%=l(:label_issue_plural)%></h2>
<%= start_form_tag({:action => 'list_issues'}, :id => 'query_form') %>
<%= render :partial => 'queries/filters', :locals => {:query => @query} %>
<%= end_form_tag %>
<div class="contextual">
<%= link_to_remote l(:button_apply),
{ :url => { :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 },
:update => "content",
:with => "Form.serialize('query_form')"
}, :class => 'pic picCheck' %>
<%= link_to l(:button_clear), {:controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1}, :class => 'pic picDelete' %>
<% if authorize_for('projects', 'add_query') %>
<%= link_to_remote l(:button_save),
{ :url => { :controller => 'projects', :action => "add_query", :id => @project },
:method => 'get',
:update => "content",
:with => "Form.serialize('query_form')"
}, :class => 'pic picEdit' %>
<% end %>
</div>
<br />
<% else %>
<% if authorize_for('projects', 'add_query') %>
<div class="contextual">
<%= link_to l(:button_edit), {:controller => 'queries', :action => 'edit', :id => @query}, :class => 'pic picEdit' %>
<%= link_to l(:button_delete), {:controller => 'queries', :action => 'destroy', :id => @query}, :confirm => l(:text_are_you_sure), :post => true, :class => 'pic picDelete' %>
</div>
<% end %>
<h2><%= @query.name %></h2>
<% end %>
<%= error_messages_for 'query' %>
<% if @query.valid? %>
Jean-Philippe Lang
issues table is no more displayed if there is no issue to display...
r93 <% if @issues.empty? %>
<p><i><%= l(:label_no_data) %></i></p>
<% else %>
Jean-Philippe Lang
"queries" branch merged...
r92 &nbsp;
Jean-Philippe Lang
* new report: project activity...
r42 <%= start_form_tag({:controller => 'projects', :action => 'move_issues', :id => @project}, :id => 'issues_form' ) %>
Jean-Philippe Lang
css cleaning...
r105 <table class="list">
<thead><tr>
<th></th>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <%= sort_header_tag('issues.id', :caption => '#') %>
<%= sort_header_tag('issues.tracker_id', :caption => l(:field_tracker)) %>
Jean-Philippe Lang
css cleaning...
r105 <%= sort_header_tag('issue_statuses.name', :caption => l(:field_status)) %>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <th><%=l(:field_subject)%></th>
<%= sort_header_tag('users.lastname', :caption => l(:field_author)) %>
<%= sort_header_tag('issues.created_on', :caption => l(:field_created_on)) %>
<%= sort_header_tag('issues.updated_on', :caption => l(:field_updated_on)) %>
Jean-Philippe Lang
css cleaning...
r105 </tr></thead>
<tbody>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <% for issue in @issues %>
Jean-Philippe Lang
tr color removed on issues list...
r63 <tr class="<%= cycle("odd", "even") %>">
Jean-Philippe Lang
css cleaning...
r105 <th width="15"><%= check_box_tag "issue_ids[]", issue.id %></th>
<td align="center"><%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %></td>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <td align="center"><%= issue.tracker.name %></td>
Jean-Philippe Lang
css cleaning...
r105 <td><div class="square" style="background:#<%= issue.status.html_color %>;"></div> <%= issue.status.name %></td>
Jean-Philippe Lang
various modifications to prevent xss...
r96 <td><%= link_to h(issue.subject), :controller => 'issues', :action => 'show', :id => issue %></td>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <td align="center"><%= issue.author.display_name %></td>
<td align="center"><%= format_time(issue.created_on) %></td>
<td align="center"><%= format_time(issue.updated_on) %></td>
</tr>
Jean-Philippe Lang
css cleaning...
r105 <% end %>
</tbody>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 </table>
Jean-Philippe Lang
"queries" branch merged...
r92 <div class="contextual">
<%= l(:label_export_to) %>
Jean-Philippe Lang
css cleaning...
r105 <%= link_to 'CSV', {:action => 'export_issues_csv', :id => @project}, :class => 'icon file' %>,
Jean-Philippe Lang
"queries" branch merged...
r92 <%= link_to 'PDF', {:action => 'export_issues_pdf', :id => @project}, :class => 'pic picPdf' %>
</div>
Jean-Philippe Lang
css cleaning...
r105
<%= submit_tag l(:button_move), :class => "button-small" %>
<%= end_form_tag %>
&nbsp;
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <%= pagination_links_full @issue_pages %>
[ <%= @issue_pages.current.first_item %> - <%= @issue_pages.current.last_item %> / <%= @issue_count %> ]
Jean-Philippe Lang
css cleaning...
r105
Jean-Philippe Lang
issues table is no more displayed if there is no issue to display...
r93 <% end %>
Jean-Philippe Lang
"queries" branch merged...
r92 <% end %>