summaryrefslogtreecommitdiff
path: root/view/html/recipes.html
AgeCommit message (Collapse)Author
2024-11-03view: Implement favorite recipesxengineering
This marks favorite recipes with a `⭐` emoticon. The favorite flag value can be set on the recipe edit page. Favorite recipes are listed first on the recipe list view. Furthermore as a second priority the created time stamp is used in the recipe list so that more recent recipes are listed first.
2024-05-09Remove default recipe namexengineering
To avoid not clickable recipes on the /recipes page a default name used to be inserted on recipe creation. This was not a proper fix for the problem and also was annoying that the user first had to remove the default recipe name. This commit removes this default name.
2024-03-24view: Fix position of header tagxengineering
It should be inside the body tag but used to be before it.
2024-03-06view: Display message in case of no recipesxengineering
2024-03-03view: Move recipe adding to /recipesxengineering
In the long term the <nav> section at the top should reference the list views of all managed objects (recipes, users, products and so on). With this structure it makes more sense to have the button to add a recipe on the list view on recipes located at /recipes.
2024-03-03view: Move all JavaScript code to ceres.jsxengineering
This allows to cache the involved JavaScript code.
2024-03-03view: Add template 'nav'xengineering
The <nav> section is the same on every page. This new template reduces code duplication.
2024-02-15view: Add doctype to HTMLxengineering
2024-02-15view: Reference /recipes with home buttonxengineering
The index page / provides a redirect to /recipes but this is inefficient since two HTTP requests are required.
2024-02-13view: Implement GET handler for model.Recipesxengineering