## Relations
% for label, relations in (('Artist', c.art.artists), \
('Recipient', c.art.recipients), \
('Participant', c.art.participants)):
% for user in relations:
${label}: ${user.name}
% endfor
% endfor
## Regular tags
% for tag in c.art.tags:
${h.form(h.url("art_tag", art_id=c.art.id, id=tag.id), method="delete")}
${h.HTML.input(type='image', src='/icons/overlay/tag--minus.png', alt='[Remove]')}
${tag}
${h.end_form()}
% endfor
% if c.user:
${h.form(h.url("art_tags", art_id=c.art.id))}