{% extends "area_base.html" %}
{% from "_macros/carousel.html" import carousel %}
{% block title %}{{ piece.name }} | {{ piece.catalogue_number }} | Craft | TheOrganist24{% endblock %}
{% block area_content %}
{% set photo_prefix = 'theorganist24/craft/projects/' ~ piece.thusly ~ '/photos' %}
{% if finished_photos %}
{{ carousel(finished_photos, photo_prefix, piece.name, '360px', 'cs-carousel--large') }}
{% endif %}
{% if piece.notes %}
{{ piece.notes | nl2br }}
{% endif %}
{% if process_photos %}
Process
{{ carousel(process_photos, photo_prefix, 'Progress: ' ~ piece.name) }}
{% endif %}
{% endblock %}