File tree 5 files changed +27
-9
lines changed
5 files changed +27
-9
lines changed Original file line number Diff line number Diff line change 2
2
< div class ="wc-content " id ="browse-issues ">
3
3
< h2 > Browse Issues</ h2 >
4
4
< span class ="key ">
5
- < span class ="IssueItem--untriaged "> Untriaged</ span >
6
- < span class ="IssueItem--need "> Needs Diagnosis</ span >
7
- < span class ="IssueItem--ready "> Ready for Outreach</ span >
8
- < span class ="IssueItem--sitewait "> Site Contacted</ span >
9
- < span class ="IssueItem--closed "> Closed</ span >
5
+ < span class ="IssueItem--untriaged ">
6
+ < a href ="{{ url_for('show_issues') }}?untriaged=1 "> Untriaged</ a >
7
+ </ span >
8
+ < span class ="IssueItem--need ">
9
+ < a href ="{{ url_for('show_issues') }}?needsdiagnosis=1 "> Needs Diagnosis</ a >
10
+ </ span >
11
+ < span class ="IssueItem--ready ">
12
+ < a href ="{{ url_for('show_issues') }}?contactready=1 "> Ready for Outreach</ a >
13
+ </ span >
14
+ < span class ="IssueItem--sitewait ">
15
+ < a href ="{{ url_for('show_issues') }}?sitewait=1 "> Site Contacted</ a >
16
+ </ span >
17
+ < span class ="IssueItem--closed ">
18
+ < a href ="{{ url_for('show_issues') }}?closed=1 "> Closed</ a >
19
+ </ span >
10
20
</ span >
11
21
{% include "browse-issues/my-issues.html" %}
12
22
< div class ="cssr-Grid cssr-Grid--withGutter ">
Original file line number Diff line number Diff line change 1
1
< div id ="needs-diagnosis " class ="cssr-Grid-cell cssr-all--1of2 cssr-maxM--2of2 ">
2
2
< script type ="text/template " id ="needs-diagnosis-tmpl ">
3
- < h3 class = "wc-titleIssue" > Needs Diagnosis</ h3 >
3
+ < h3 class = "wc-titleIssue" >
4
+ < a href = "{{ url_for('show_issues') }}?needsdiagnosis=1" > Needs Diagnosis</ a >
5
+ </ h3 >
4
6
< % if ( needsDiagnosis . length ) { % >
5
7
< % _ . each ( needsDiagnosis , function ( issue ) { % >
6
8
< div class = "IssueItem IssueItem--need" >
Original file line number Diff line number Diff line change 1
1
< div id ="ready-for-outreach " class ="cssr-Grid-cell cssr-all--1of2 cssr-maxM--2of2 ">
2
2
< script type ="text/template " id ="contactready-tmpl ">
3
- < h3 class = "wc-titleIssue" > Ready for Outreach</ h3 >
3
+ < h3 class = "wc-titleIssue" >
4
+ < a href = "{{ url_for('show_issues') }}?contactready=1" > Ready for Outreach</ a >
5
+ </ h3 >
4
6
< % if ( contactReady . length ) { % >
5
7
< % _ . each ( contactReady , function ( issue ) { % >
6
8
< div class = "IssueItem IssueItem--ready" >
Original file line number Diff line number Diff line change 1
1
< div id ="sitewait " class ="cssr-Grid-cell cssr-all--1of2 cssr-maxM--2of2 ">
2
2
< script type ="text/template " id ="sitewait-tmpl ">
3
- < h3 class = "wc-titleIssue" > Site Contacted</ h3 >
3
+ < h3 class = "wc-titleIssue" >
4
+ < a href = "{{ url_for('show_issues') }}?sitewait=1" > Site Contacted</ a >
5
+ </ h3 >
4
6
< % if ( sitewait . length ) { % >
5
7
< % _ . each ( sitewait , function ( issue ) { % >
6
8
< div class = "IssueItem IssueItem--sitewait" >
Original file line number Diff line number Diff line change 1
1
< div id ="untriaged " class ="cssr-Grid-cell cssr-all--1of2 cssr-maxM--2of2 ">
2
2
< script type ="text/template " id ="untriaged-tmpl ">
3
- < h3 class = "wc-titleIssue" > Untriaged Issues</ h3 >
3
+ < h3 class = "wc-titleIssue" >
4
+ < a href = "{{ url_for('show_issues') }}?untriaged=1" > Untriaged Issues</ a >
5
+ </ h3 >
4
6
< % if ( untriaged . length ) { % >
5
7
< % _ . each ( untriaged , function ( issue ) { % >
6
8
< div class = "IssueItem IssueItem--untriaged" >
You can’t perform that action at this time.
0 commit comments