diff --git a/cookbook/templates/recipes_table.html b/cookbook/templates/recipes_table.html index 57fe29dd2..b5ef38814 100644 --- a/cookbook/templates/recipes_table.html +++ b/cookbook/templates/recipes_table.html @@ -29,37 +29,63 @@
-
{{ row.cells.name }} - {% recipe_rating row.record request.user as rating %} - {{ rating|safe }} -
-

- {% for x in row.record.keywords.all %} - {{ x }} - {% endfor %} -

-

- {% if row.cells.working_time != 0 %} - {% trans 'Preparation time ca.' %} {{ row.cells.working_time }} min - {% endif %} +

+
+
{{ row.cells.name }} + {% recipe_rating row.record request.user as rating %} + {{ rating|safe }} +
+

+ {% for x in row.record.keywords.all %} + {{ x }} + {% endfor %} +

+

+ {% if row.cells.working_time != 0 %} + {% trans 'Preparation time ca.' %} {{ row.cells.working_time }} min + {% endif %} + + {% if row.cells.waiting_time != 0 %} + {% trans 'Waiting time ca.' %} {{ row.cells.waiting_time }} min + {% endif %} + {% if not row.record.internal %} + {% trans 'External' %} + {% endif %} + {% recipe_last row.record request.user as last_cooked %} + {% if last_cooked %} + {% trans 'Last cooked' %} {{ last_cooked|date }} + {% endif %} +

+
+
+ +
+
- {% if row.cells.waiting_time != 0 %} - {% trans 'Waiting time ca.' %} {{ row.cells.waiting_time }} min - {% endif %} - {% if not row.record.internal %} - {% trans 'External' %} - {% endif %} - {% recipe_last row.record request.user as last_cooked %} - {% if last_cooked %} - {% trans 'Last cooked' %} {{ last_cooked|date }} - {% endif %} - {{ row.cells.edit }} - {% trans 'Log' %} -