{% extends "base.html" %} {% block title %}{{ template.filename }} - Fill Template - ICDEV™{% endblock %} {% block content %} {% from "includes/classification_macros.html" import design_classification_banner %} {{ design_classification_banner('CUI') }}
{% for slide in template.shape_map.slides %} {% set kinds = slide.shapes | map(attribute='kind') | list %}

Slide {{ slide.index + 1 }}

({{ slide.shapes | length }} fillable shape{{ 's' if slide.shapes | length != 1 else '' }})
{% if not slide.shapes %}
No fillable text/table/chart shapes on this slide — its design will be kept as-is if selected.
{% endif %} {% if 'title' in kinds %}
{% endif %} {% if 'body' in kinds %}
{% endif %} {% for shape in slide.shapes if shape.kind == 'table' %}
{% endfor %}
{% endfor %}
{% endblock %}