Categories: {% if photo.categories|length < 1 %}
You have to choose at least one category.
{% endif %}
{% for key,category in photo.categories %}
{{ category.category }} {% if not loop.last %}|{% endif %}
{% endfor %}
Themes:
{% if photo.themes|length < 1 %}
You have to choose at least one theme.
{% endif %}
{% for key,theme in photo.themes %}
{{ theme.theme }} {% if not loop.last %}|{% endif %}
{% endfor %}
Tags: {% for key,tag in photo.tags %}
{{ tag.tag }}{% if not loop.last %},{% endif %}
{% endfor %}