aboutsummaryrefslogtreecommitdiffstats
path: root/postgres (unfollow)
Commit message (Collapse)AuthorLines
2021-08-03Implement desired query logic.Gravatar swfarnsworth-7/+14
2021-08-03Convert data structure for query.Gravatar swfarnsworth-1/+10
Was list[str], is now dict[str, set[str]], organized by category.
2021-08-03split up checkbox options in query paramsGravatar fisher60-21/+34
I have added functionality to the front end to split up the checkbox options into separate query params. This will make it easier to parse what has been selected.
2021-08-03Restructure table of resources for new query logic.Gravatar swfarnsworth-23/+20
2021-08-03Create Resource type annotation.Gravatar swfarnsworth-3/+3
2021-07-25remove redundant variable declarationGravatar fisher60-2/+1
2021-07-25refactor search function for resourcesGravatar fisher60-10/+9
2021-07-25working demo of smart resources searchGravatar fisher60-11/+69
I have incorporated a search that allows users to check boxes to filter resources. This is a working version, but the algo for searching likely needs to be modified. The frontend also needs some style updates. All necessary functionality should be present now though.
2021-07-24Updated type annotations; get_resources_meta now returns a dict of sorted ↵Gravatar swfarnsworth-18/+10
lists of strings in title-case.
2021-07-24Added type annotations; refactored.Gravatar swfarnsworth-13/+15
2021-07-24Remove extra newline from end of file (there is now one newline).Gravatar swfarnsworth-1/+0
2021-07-24add constant for resource tags. Add Functional front endGravatar fisher60-35/+71
This change adds a fully functional front end menu for testing. This is a very rough outline and will need a bit of UI and UX love to get working fully. Should act as an example of functionality
2021-07-24add function to gather tags from resource yaml filesGravatar fisher60-0/+23
I added a function to utils to load all the tags from the resources, this should allow all the tags to be loaded once and exist in memory.
2021-07-23change resources to prepare for smart resource searchGravatar fisher60-93/+105