{% extends "base.html" %} {% block title %}Fill an Existing Template - ICDEV™{% endblock %} {% block content %} {% from "includes/classification_macros.html" import design_classification_banner %} {{ design_classification_banner('CUI') }}

Upload a Template

Uploaded Templates

{% if templates %}
{% for t in templates %}
{{ t.filename }}
{{ t.slide_count }} slide{{ 's' if t.slide_count != 1 else '' }} · {{ t.uploaded_at[:10] if (t.uploaded_at and t.uploaded_at is string) else (t.uploaded_at.strftime('%Y-%m-%d') if t.uploaded_at else '—') }}
{% endfor %}
{% else %}
📄
No templates uploaded yet
Upload a .pptx above to get started.
{% endif %}
{% endblock %}