@@ -83,9 +83,9 @@ def media_type_mapper(media_type: str) -> dict:
83
83
"form" : MangaForm ,
84
84
"list_layout" : "app/media_table.html" ,
85
85
"sort_choices" : [
86
- ("- score" , "Score" ),
86
+ ("score" , "Score" ),
87
87
("title" , "Title" ),
88
- ("- progress" , "Progress" ),
88
+ ("progress" , "Progress" ),
89
89
("start_date" , "Start Date" ),
90
90
("end_date" , "End Date" ),
91
91
],
@@ -95,9 +95,9 @@ def media_type_mapper(media_type: str) -> dict:
95
95
"form" : AnimeForm ,
96
96
"list_layout" : "app/media_table.html" ,
97
97
"sort_choices" : [
98
- ("- score" , "Score" ),
98
+ ("score" , "Score" ),
99
99
("title" , "Title" ),
100
- ("- progress" , "Progress" ),
100
+ ("progress" , "Progress" ),
101
101
("start_date" , "Start Date" ),
102
102
("end_date" , "End Date" ),
103
103
],
@@ -107,8 +107,9 @@ def media_type_mapper(media_type: str) -> dict:
107
107
"form" : MovieForm ,
108
108
"list_layout" : "app/media_grid.html" ,
109
109
"sort_choices" : [
110
- ("- score" , "Score" ),
110
+ ("score" , "Score" ),
111
111
("title" , "Title" ),
112
+ ("start_date" , "Start Date" ),
112
113
("end_date" , "End Date" ),
113
114
],
114
115
},
@@ -117,7 +118,7 @@ def media_type_mapper(media_type: str) -> dict:
117
118
"form" : TVForm ,
118
119
"list_layout" : "app/media_grid.html" ,
119
120
"sort_choices" : [
120
- ("- score" , "Score" ),
121
+ ("score" , "Score" ),
121
122
("title" , "Title" ),
122
123
],
123
124
},
@@ -126,9 +127,9 @@ def media_type_mapper(media_type: str) -> dict:
126
127
"form" : SeasonForm ,
127
128
"list_layout" : "app/media_grid.html" ,
128
129
"sort_choices" : [
129
- ("- score" , "Score" ),
130
+ ("score" , "Score" ),
130
131
("title" , "Title" ),
131
- ("- progress" , "Progress" ),
132
+ ("progress" , "Progress" ),
132
133
("start_date" , "Start Date" ),
133
134
("end_date" , "End Date" ),
134
135
],
0 commit comments