Added calories to meal plan presentation

This commit is contained in:
2020-02-23 16:06:44 +01:00
parent bcd7dd1997
commit 060db6b867
3 changed files with 63 additions and 3 deletions

View File

@ -70,6 +70,16 @@
<td>{{ mealplan.saturday_dinner.name }}</td>
<td>{{ mealplan.sunday_dinner.name }}</td>
</tr>
<tr>
<th scope="row">{% trans "Calories vs demand" %}</th>
<td>{{ calories_monday }}%</td>
<td>{{ calories_tuesday }}%</td>
<td>{{ calories_wednesday }}%</td>
<td>{{ calories_thursday }}%</td>
<td>{{ calories_friday }}%</td>
<td>{{ calories_saturday }}%</td>
<td>{{ calories_sunday }}%</td>
</tr>
</tbody>
</table>
{% endblock %}