Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/edit.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends "base.html" %}

{% block title %}Edit: {{ recipe_name }} - Cook{% endblock %}
{% block title %}{{ tr.t("action-edit") }}: {{ recipe_name }} - Cook{% endblock %}

{% block content %}
<div class="flex flex-col h-[calc(100vh-12rem)]">
Expand Down
2 changes: 1 addition & 1 deletion templates/error.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends "base.html" %}

{% block title %}Error - Cook{% endblock %}
{% block title %}{{ tr.t("error-title") }} - Cook{% endblock %}

{% block content %}
<div class="max-w-2xl mx-auto mt-12">
Expand Down
2 changes: 1 addition & 1 deletion templates/preferences.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends "base.html" %}

{% block title %}Preferences - Cook{% endblock %}
{% block title %}{{ tr.t("nav-preferences") }} - Cook{% endblock %}

{% block content %}
<div>
Expand Down
2 changes: 1 addition & 1 deletion templates/recipes.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends "base.html" %}

{% block title %}Recipes - Cook{% endblock %}
{% block title %}{{ tr.t("nav-recipes") }} - Cook{% endblock %}

{% block content %}
<div>
Expand Down
2 changes: 1 addition & 1 deletion templates/shopping_list.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends "base.html" %}

{% block title %}Shopping List - Cook{% endblock %}
{% block title %}{{ tr.t("nav-shopping-list") }} - Cook{% endblock %}

{% block content %}
<div class="flex flex-col lg:flex-row gap-6">
Expand Down
Loading