Skip to content

Commit

Permalink
display recipes in Celsius
Browse files Browse the repository at this point in the history
  • Loading branch information
hotzenklotz committed Apr 20, 2020
1 parent 13bbfb2 commit 90e7185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/recipes.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<ol>
{% for step in recipe.steps %}
<li>
{{ step.name }} ({{ format_float(step.temp, 0) }}F @ {{ format_time(step.time) }})
{{ step.name }} ({{ format_float(step.temp, 0) }}C @ {{ format_time(step.time) }})
</li>
{% endfor %}
</ol>
Expand Down

0 comments on commit 90e7185

Please sign in to comment.