{% csrf_token %}
Do you want to change something on your profile?
Save your favorite recipe options!
Activity Level
Diet
Intolerences
Favorite cuisines
{{form.cuisines.label}}
{% if form.cuisines.errors %}
{% for error in form.cuisines.errors %}
{{ error }}
{% endfor %}
{% endif %}
{% for cuisine in form.cuisines %}
{{cuisine}}
|
{% if forloop.counter|divisibleby:10 %}
{% endif %}
{% endfor %}
Favorite kinds of foods
{{form.rawGroups.label}}
{% if form.rawGroups.errors %}
{% for error in form.rawGroups.errors %}
{{ error }}
{% endfor %}
{% endif %}
{% for group in form.rawGroups %}
{{group}}
|
{% if forloop.counter|divisibleby:4 %}
{% endif %}
{% endfor %}
Usual time to cook
{{form.timeToCook.label}}
{% if form.timeToCook.errors %}
{% for error in form.timeToCook.errors %}
{{ error }}
{% endfor %}
{% endif %}