summaryrefslogtreecommitdiff
path: root/view/html/recipe.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-10-24view: Display URL content on recipe pagexengineering
This makes the recipe page less pretty. Nevertheless the URL is more visible to the user which makes it more likely that errors in the URL are detected. This change is based on user feedback. Invalid URLs were added which led effectively to data loss.
2024-10-24view: Order ingredient summary by ingredient namexengineering
This makes it easier to write a shopping list for the required ingredients.
2024-05-15view: Remove empty ingredient summariesxengineering
If the recipe has no ingredients at all the "Ingredient summary:" text used to be displayed. This is not useful and confusing. It is removed with this commit.
2024-05-15view: Rename to 'Ingredient summary:'xengineering
This used to be named 'Ingredients: which might be confusing since ingredients are defined per step and the list at the top of the recipe is just a summary.
2024-05-12view: Add ingredient overview to recipe read pagexengineering
2024-05-12view: Show ingredients on read pagexengineering
2024-03-24view: Add steps to recipe pagexengineering
2024-03-24view: Fix position of header tagxengineering
It should be inside the body tag but used to be before it.
2024-03-23view: Do not change button colorxengineering
Design changes should be avoided for now since simple.css cares about the CSS part of Ceres.
2024-03-10view: Remove nested anchor and button elementsxengineering
There is the need to add buttons to the recipe server which act like a anchor tag (link). This can be achieved by nesting anchor and button tag. The problem is that if the user cycles through the elements of the page with the 'tab' key such a button is handled as two overlapping elements instead of one. This commit solves the issue by using buttons with the attribute `onclick="window.location.href='<url>';`.
2024-03-06view: Rework /recipe page layoutxengineering
2024-03-06view: Display multiline notes correctlyxengineering
2024-03-06view: Make recipe portions, URL and notes optionalxengineering
An empty string for one of these attributes will lead to a recipe view page which does not render the paragraph for this item.
2024-03-03view: Add recipe createxengineering
2024-03-03view: Add template 'nav'xengineering
The <nav> section is the same on every page. This new template reduces code duplication.
2024-03-03view: Provide recipe deletionxengineering
2024-03-03view: Replace edit by view parameterxengineering
The old edit URL parameter allowed to select one different HTML template. A more generic approach is to provide a view parameter which allows to use multiple alternative HTML templates for the same data defined by the Go struct. This makes implementing additional pages like a confirm page for recipe deletion easier.
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-15view: Add edit view for model.Recipe typexengineering
2024-02-13view: Implement GET handler for model.Recipexengineering