slugbucket / crossword-hints

Python Flask web application to aid decipherment of cryptic crossword clues for known setters
GNU General Public License v3.0
1 stars 0 forks source link

Streamline the use of solutions search criteria to remove query duplication - feat0020 #24

Closed slugbucket closed 4 years ago

slugbucket commented 4 years ago

Adding the simple search function has introduced a much simpler method for retrieving the results of the solutions query but has left behind a duplicate query in the POST and GET processing sections of crossword_solution_index. Remove the duplicate query by better handling of the search criteria.

slugbucket commented 4 years ago

There is also the opportunity to move the PER_PAGE value to the settings file.

slugbucket commented 4 years ago

Completed