summaryrefslogtreecommitdiff
path: root/app/views/issues
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-02-28 17:46:28 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-02-28 17:46:28 +0200
commit115454f3ed35d136c2edd77296ffff97570a6822 (patch)
tree818cdb68c48f4d89c3dbb8ed53d6e3cedff294e2 /app/views/issues
parent15b121d603db92fe8f08bfb5e55530630e3da18c (diff)
downloadgitlab-ce-115454f3ed35d136c2edd77296ffff97570a6822.tar.gz
created-by-me filter for issues inside project. Fixed global project.issues order
Diffstat (limited to 'app/views/issues')
-rw-r--r--app/views/issues/_filter.html.haml5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/issues/_filter.html.haml b/app/views/issues/_filter.html.haml
index 21efaa5357c..b621f11bc5b 100644
--- a/app/views/issues/_filter.html.haml
+++ b/app/views/issues/_filter.html.haml
@@ -6,7 +6,10 @@
Open
%li{class: ("active" if params[:status] == 'assigned-to-me')}
= link_to project_issues_path(@project, status: 'assigned-to-me') do
- Assigned To Me
+ Assigned to me
+ %li{class: ("active" if params[:status] == 'created-by-me')}
+ = link_to project_issues_path(@project, status: 'created-by-me') do
+ Created by me
%li{class: ("active" if params[:status] == 'closed')}
= link_to project_issues_path(@project, status: 'closed') do
Closed