2012-04-08 23:28:58 +02:00
|
|
|
= render "issues/head"
|
2012-01-28 00:49:14 +01:00
|
|
|
.issues_content
|
2012-06-30 23:35:24 +02:00
|
|
|
%h3.page_title
|
2012-01-28 10:54:11 +01:00
|
|
|
Issues
|
2012-07-10 06:33:04 +02:00
|
|
|
%small (<span class=issue_counter>#{@issues.total_count}</span>)
|
2012-04-08 23:28:58 +02:00
|
|
|
.right
|
2012-04-10 19:06:17 +02:00
|
|
|
.span5
|
|
|
|
- if can? current_user, :write_issue, @project
|
2012-06-04 00:37:27 +02:00
|
|
|
= link_to new_project_issue_path(@project), :class => "right btn small", :title => "New Issue", :remote => true do
|
2012-04-10 19:06:17 +02:00
|
|
|
New Issue
|
|
|
|
= form_tag search_project_issues_path(@project), :method => :get, :remote => true, :id => "issue_search_form", :class => :right do
|
2012-04-08 23:28:58 +02:00
|
|
|
= hidden_field_tag :project_id, @project.id, { :id => 'project_id' }
|
|
|
|
= hidden_field_tag :status, params[:f]
|
2012-04-10 19:06:17 +02:00
|
|
|
= search_field_tag :issue_search, nil, { :placeholder => 'Search', :class => 'issue_search span3 right neib' }
|
2012-04-08 23:28:58 +02:00
|
|
|
|
2012-06-21 07:29:53 +02:00
|
|
|
.clearfix
|
2012-07-28 02:35:24 +02:00
|
|
|
|
2012-02-18 13:12:48 +01:00
|
|
|
%div#issues-table-holder.ui-box
|
|
|
|
.title
|
2012-07-28 02:35:24 +02:00
|
|
|
= check_box_tag "check_all_issues", nil, false, :class => "check_all_issues left"
|
|
|
|
|
2012-01-17 23:04:27 +01:00
|
|
|
|
2012-07-28 02:35:24 +02:00
|
|
|
.issues_bulk_update.hide
|
|
|
|
= form_tag bulk_update_project_issues_path(@project), :method => :post do
|
|
|
|
%span Update selected issues with
|
|
|
|
|
|
|
|
= select_tag('update[status]', options_for_select(['open', 'closed']), :prompt => "Status")
|
|
|
|
= select_tag('update[assignee_id]', options_from_collection_for_select(@project.users.all, "id", "name", params[:assignee_id]), :prompt => "Assignee")
|
|
|
|
= select_tag('update[milestone_id]', options_from_collection_for_select(@project.milestones.order("id desc").all, "id", "title", params[:milestone_id]), :prompt => "Milestone")
|
|
|
|
= hidden_field_tag 'update[issues_ids]', []
|
2012-06-27 20:20:35 +02:00
|
|
|
= hidden_field_tag :f, params[:f]
|
2012-07-28 02:35:24 +02:00
|
|
|
= button_tag "Save", :class => "btn update_selected_issues"
|
|
|
|
.issues_filters
|
|
|
|
.left
|
|
|
|
%ul.nav.nav-pills.left
|
|
|
|
%li{:class => ("active" if (params[:f] == issues_filter[:open] || !params[:f]))}
|
|
|
|
= link_to project_issues_path(@project, :f => issues_filter[:open], :milestone_id => params[:milestone_id]) do
|
|
|
|
Open
|
|
|
|
%li{:class => ("active" if params[:f] == issues_filter[:closed])}
|
|
|
|
= link_to project_issues_path(@project, :f => issues_filter[:closed], :milestone_id => params[:milestone_id]) do
|
|
|
|
Closed
|
|
|
|
%li{:class => ("active" if params[:f] == issues_filter[:to_me])}
|
|
|
|
= link_to project_issues_path(@project, :f => issues_filter[:to_me], :milestone_id => params[:milestone_id]) do
|
|
|
|
To Me
|
|
|
|
%li{:class => ("active" if params[:f] == issues_filter[:all])}
|
|
|
|
= link_to project_issues_path(@project, :f => issues_filter[:all], :milestone_id => params[:milestone_id]) do
|
|
|
|
All
|
|
|
|
|
|
|
|
.right
|
|
|
|
= form_tag project_issues_path(@project), :method => :get, :class => :right do
|
|
|
|
= select_tag(:label_name, options_for_select(issue_tags, params[:label_name]), :prompt => "Labels")
|
|
|
|
= select_tag(:assignee_id, options_from_collection_for_select(@project.users.all, "id", "name", params[:assignee_id]), :prompt => "Assignee")
|
|
|
|
= select_tag(:milestone_id, options_from_collection_for_select(@project.milestones.order("id desc").all, "id", "title", params[:milestone_id]), :prompt => "Milestone")
|
|
|
|
= hidden_field_tag :f, params[:f]
|
|
|
|
.clearfix
|
2012-06-27 20:20:35 +02:00
|
|
|
|
2012-06-26 22:34:23 +02:00
|
|
|
%ul#issues-table.unstyled.issues_table
|
2012-03-10 22:41:05 +01:00
|
|
|
= render "issues"
|
2012-04-08 23:28:58 +02:00
|
|
|
|
2012-07-28 02:35:24 +02:00
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
:javascript
|
2012-06-12 10:31:38 +02:00
|
|
|
$(function(){
|
2012-06-27 22:13:44 +02:00
|
|
|
issuesPage();
|
2012-07-28 02:35:24 +02:00
|
|
|
})
|