File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ def list_proposals(request, conference_slug):
103
103
# make sure it's after the tag filtering is applied
104
104
selected_proposals_list = proposals_qs .filter (
105
105
review_status = ProposalReviewStatus .SELECTED
106
- )
106
+ ). order_by ( "created_at" )
107
107
108
108
selected_proposals = collections .defaultdict (list )
109
109
for proposal in selected_proposals_list :
@@ -123,8 +123,10 @@ def list_proposals(request, conference_slug):
123
123
{
124
124
"public_proposals_list" : public_proposals_list ,
125
125
"selected_proposals" : dict (selected_proposals ),
126
- "proposal_sections" : conference .proposal_sections .all (),
127
- "proposal_types" : conference .proposal_types .all (),
126
+ "proposal_sections" : conference .proposal_sections .all ().order_by (
127
+ "modified_at"
128
+ ),
129
+ "proposal_types" : conference .proposal_types .all ().order_by ("modified_at" ),
128
130
"is_filtered" : is_filtered ,
129
131
"filter_name" : filter_name ,
130
132
"is_reviewer" : permissions .is_proposal_reviewer (
You can’t perform that action at this time.
0 commit comments