summaryrefslogtreecommitdiff
path: root/app/views/issues/index.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/issues/index.html.haml')
-rw-r--r--app/views/issues/index.html.haml24
1 files changed, 24 insertions, 0 deletions
diff --git a/app/views/issues/index.html.haml b/app/views/issues/index.html.haml
new file mode 100644
index 00000000000..7157d2c385d
--- /dev/null
+++ b/app/views/issues/index.html.haml
@@ -0,0 +1,24 @@
+%div
+ - if can? current_user, :write_issue, @project
+ .left= link_to 'New Issue', new_project_issue_path(@project), :remote => true, :class => "lbutton vm"
+ .right
+ = form_tag project_issues_path(@project), :method => :get do
+ .span-2
+ = radio_button_tag :f, 0, (params[:f] || "0") == "0", :onclick => "this.form.submit()", :id => "open_issues"
+ = label_tag "open_issues","Open"
+ .span-2
+ = radio_button_tag :f, 2, params[:f] == "2", :onclick => "this.form.submit()", :id => "closed_issues"
+ = label_tag "closed_issues","Closed"
+ .span-2
+ = radio_button_tag :f, 3, params[:f] == "3", :onclick => "this.form.submit()", :id => "my_issues"
+ = label_tag "my_issues","To Me"
+
+ .span-2
+ = radio_button_tag :f, 1, params[:f] == "1", :onclick => "this.form.submit()", :id => "all_issues"
+ = label_tag "all_issues","All"
+
+ #issues-table-holder= render "issues"
+ %br
+:javascript
+ $('.delete-issue').live('ajax:success', function() {
+ $(this).closest('tr').fadeOut(); });