##// END OF EJS Templates
Main project list now displays root projects with their subprojects....
Main project list now displays root projects with their subprojects. Added files turned into links (if not removed) on the issue history. git-svn-id: http://redmine.rubyforge.org/svn/trunk@729 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r704:7e4611ad3180
r718:f2a058f8cf04
Show More
list_issues.rhtml
87 lines | 4.4 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% if @query.new_record? %>
<div class="contextual">
Jean-Philippe Lang
Added per user custom queries....
r563 <%= link_to l(:label_query_plural), :controller => 'queries', :project_id => @project %>
Jean-Philippe Lang
Fixed: "new issue" drop-down only visible by admin users....
r670 <% if authorize_for('projects', 'add_issue') %>| <%= l(:label_issue_new) %>: <%= new_issue_selector %><% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
<h2><%=l(:label_issue_plural)%></h2>
Jean-Philippe Lang
Removed @html_title assignments in controllers....
r704 <% set_html_title l(:label_issue_plural) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<% form_tag({:action => 'list_issues'}, :id => 'query_form') do %>
<%= render :partial => 'queries/filters', :locals => {:query => @query} %>
<% end %>
<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')"
Jean-Philippe Lang
Ajaxified issue filter reset link...
r508 }, :class => 'icon icon-edit' %>
<%= link_to_remote l(:button_clear),
{ :url => {:controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1},
:update => "content",
Jean-Philippe Lang
Added a "clear" link when displaying a saved query. It clears the query filter to show all issues....
r510 }, :class => 'icon icon-reload' %>
Jean-Philippe Lang
Ajaxified issue filter reset link...
r508
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% if current_role.allowed_to?(:save_queries) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= link_to_remote l(:button_save),
Jean-Philippe Lang
Added per user custom queries....
r563 { :url => { :controller => 'queries', :action => 'new', :project_id => @project },
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 :method => 'get',
:update => "content",
:with => "Form.serialize('query_form')"
}, :class => 'icon icon-save' %>
<% end %>
</div>
<br />
<% else %>
<div class="contextual">
Jean-Philippe Lang
Added per user custom queries....
r563 <%= link_to l(:label_query_plural), {:controller => 'queries', :project_id => @project} %> |
<%= link_to l(:label_issue_view_all), {:controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1} %>
Jean-Philippe Lang
Fixed: "new issue" drop-down only visible by admin users....
r670 <% if authorize_for('projects', 'add_issue') %>| <%= l(:label_issue_new) %>: <%= new_issue_selector %><% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
<h2><%= @query.name %></h2>
Jean-Philippe Lang
Removed @html_title assignments in controllers....
r704 <% set_html_title @query.name %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
<%= error_messages_for 'query' %>
<% if @query.valid? %>
<% if @issues.empty? %>
<p><i><%= l(:label_no_data) %></i></p>
<% else %>
&nbsp;
<% form_tag({:controller => 'projects', :action => 'move_issues', :id => @project}, :id => 'issues_form' ) do %>
<table class="list">
<thead><tr>
<th></th>
Jean-Philippe Lang
fixed #9308 table_name pre/suffix support...
r334 <%= sort_header_tag("#{Issue.table_name}.id", :caption => '#') %>
<%= sort_header_tag("#{Issue.table_name}.tracker_id", :caption => l(:field_tracker)) %>
<%= sort_header_tag("#{IssueStatus.table_name}.name", :caption => l(:field_status)) %>
<%= sort_header_tag("#{Issue.table_name}.priority_id", :caption => l(:field_priority)) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <th><%=l(:field_subject)%></th>
Jean-Philippe Lang
"Author" column replaced by "Assigned to" in issue list....
r419 <%= sort_header_tag("#{User.table_name}.lastname", :caption => l(:field_assigned_to)) %>
Jean-Philippe Lang
fixed #9308 table_name pre/suffix support...
r334 <%= sort_header_tag("#{Issue.table_name}.updated_on", :caption => l(:field_updated_on)) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </tr></thead>
<tbody>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <% for issue in @issues %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <tr class="<%= cycle("odd", "even") %>">
<th style="width:15px;"><%= check_box_tag "issue_ids[]", issue.id, false, :id => "issue_#{issue.id}" %></th>
<td align="center"><%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %></td>
Jean-Philippe Lang
Subproject name added in csv and pdf exports....
r493 <td align="center"><%= issue.tracker.name %></td>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <td><div class="square" style="background:#<%= issue.status.html_color %>;"></div> <%= issue.status.name %></td>
<td align="center"><%= issue.priority.name %></td>
Jean-Philippe Lang
Subproject name added in csv and pdf exports....
r493 <td><%= "#{issue.project.name} - " unless @project && @project == issue.project %><%= link_to h(issue.subject), :controller => 'issues', :action => 'show', :id => issue %></td>
Jean-Philippe Lang
"Author" column replaced by "Assigned to" in issue list....
r419 <td align="center"><%= issue.assigned_to.name if issue.assigned_to %></td>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <td align="center"><%= format_time(issue.updated_on) %></td>
</tr>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
css cleaning...
r105 </tbody>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </table>
<div class="contextual">
<%= l(:label_export_to) %>
<%= link_to 'CSV', {:action => 'export_issues_csv', :id => @project}, :class => 'icon icon-csv' %>,
<%= link_to 'PDF', {:action => 'export_issues_pdf', :id => @project}, :class => 'icon icon-pdf' %>
</div>
Jean-Philippe Lang
Fixed: 'Move' button always visible on issues list....
r702 <p><%= submit_tag(l(:button_move), :class => "button-small") if authorize_for('projects', 'move_issues') %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= pagination_links_full @issue_pages %>
[ <%= @issue_pages.current.first_item %> - <%= @issue_pages.current.last_item %> / <%= @issue_count %> ]
</p>
<% end %>
<% end %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% end %>