|
9 | 9 |
|
10 | 10 | from community.views import ( |
11 | 11 | HomePageView, JoinCommunityView, |
12 | | - OrganizationTeams |
| 12 | + OrganizationTeams, InactiveIssuesList |
13 | 13 | ) |
14 | 14 | from gci.views import GCIStudentsList |
15 | 15 | from gci.feeds import LatestTasksFeed as gci_tasks_rss |
16 | 16 | from ci_build.view_log import BuildLogsView |
17 | 17 | from data.views import ContributorsListView |
18 | 18 | from gamification.views import GamificationResults |
19 | 19 | from meta_review.views import ContributorsMetaReview |
20 | | -from inactive_issues.inactive_issues_scraper import inactive_issues_json |
21 | 20 | from unassigned_issues.unassigned_issues_scraper import ( |
22 | 21 | unassigned_issues_activity_json, |
23 | 22 | ) |
@@ -79,10 +78,10 @@ def get_index(): |
79 | 78 | distill_file='meta-review/index.html', |
80 | 79 | ), |
81 | 80 | distill_url( |
82 | | - r'static/inactive-issues.json', inactive_issues_json, |
83 | | - name='inactive_issues_json', |
| 81 | + r'inactive-issues/', InactiveIssuesList.as_view(), |
| 82 | + name='inactive-issues', |
84 | 83 | distill_func=get_index, |
85 | | - distill_file='static/inactive-issues.json', |
| 84 | + distill_file='inactive-issues/index.html', |
86 | 85 | ), |
87 | 86 | distill_url( |
88 | 87 | r'static/unassigned-issues.json', unassigned_issues_activity_json, |
|
0 commit comments