Skip to content

Commit

Permalink
3076 applied a11y review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
raftmsohani committed Aug 30, 2024
1 parent 3f7690c commit fb6ecb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tdrs-backend/tdpservice/data_files/admin/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ def data_file_summary(self, obj):
class SubmissionDateFilter(admin.SimpleListFilter):
"""filter data files by month."""

title = 'Submission Date'
title = 'submission date'
parameter_name = 'Submission Day/Month/Year'

def lookups(self, request, model_admin):
"""Return a list of tuples."""
return [
('1', 'Yesterday'),
('0', 'Today'),
('1', 'Yesterday'),
('7', 'Past 7 days'),
('30', 'This month'),
('365', 'This year'),
Expand Down

0 comments on commit fb6ecb7

Please sign in to comment.