The list of selected proposals are not ordered in the proposals listing page. Check https://in.pycon.org/cfp/2018/proposals/ . The list of selected Talks and Workshops are not in order. While the public proposals listing doesn't seem to have an issue.
This seems to be caused due to missing order_by filter in the proposal view.
|
selected_proposals_list = proposals_qs.filter( |
|
review_status=ProposalReviewStatus.SELECTED |
|
) |
The list of selected proposals are not ordered in the proposals listing page. Check https://in.pycon.org/cfp/2018/proposals/ . The list of selected Talks and Workshops are not in order. While the public proposals listing doesn't seem to have an issue.
This seems to be caused due to missing
order_byfilter in the proposal view.junction/junction/proposals/views.py
Lines 104 to 106 in a9bd537