On the bread_page template, the ingredients do not seem to ever render anything:
|
{% with ingredients=page.ingredients.all %} |
This seems to be because in our demo data, we don’t have any ingredients saved for any of our bread pages.
Reviewing the history of our fixtures, this data was never set. So ideally we would take the time to populate it. We might need more ingredients entries and then actually associate them with bread pages.
On the
bread_pagetemplate, the ingredients do not seem to ever render anything:bakerydemo/bakerydemo/templates/breads/bread_page.html
Line 35 in 6a16f1b
This seems to be because in our demo data, we don’t have any ingredients saved for any of our bread pages.
Reviewing the history of our fixtures, this data was never set. So ideally we would take the time to populate it. We might need more ingredients entries and then actually associate them with bread pages.