{% extends "area_base.html" %} {% from "_macros/carousel.html" import carousel %} {% block title %}{{ piece.name }} | {{ piece.catalogue_number }} | Craft | TheOrganist24{% endblock %} {% block area_content %}

{{ piece.name }}

Catalogue number
{{ piece.catalogue_number }}
{% if piece.completed_on %}
Completed
{{ piece.completed_on.year }}
{% elif piece.started_on %}
Started
{{ piece.started_on.year }}
{% endif %} {% if piece.disciplines %}
{% if piece.disciplines | length == 1 %}Discipline{% else %}Disciplines{% endif %}
{{ piece.disciplines | join(', ') }}
{% endif %}
{% 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 %}