You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The interface for Taskhall index works well, thanks! 😆
As for the page displaying details of a Task, I'm considering using Jinja templating rather than frontend VueJS templating. Maybe a json interface for commenting will help improve the UX, but let's consider adding it after the 1.0 version 😓
Searching tasks. Use json or URL parameters to exchange data. Maybe integrated in /taskhall/list because there are so many similarities. If using json, example request will look like:
python manager.py testinit
http://localhost:5000/taskhall/list
to get the list of tasks. Here is some parameters:FLASKY_TASKS_PER_PAGE
in config.py)For example:
http://localhost:5000/taskhall/list?page=2
will get the 2nd page sorted by time(descent) and 2 tasks per page.http://localhost:5000/taskhall/list?page=1&keyword='vote'&per_page=100
will get the first page sorted by vote(descent) and 100 tasks per page.The text was updated successfully, but these errors were encountered: