{% extends "portal_base.html" %} {% block title %}Postcard designer · Portal{% endblock %} {% block topbar_title %}Postcard designer{% endblock %} {% block portal_content %} {% if api_error %} {% endif %}

New design

{% csrf_token %}

Opens PCM Integrations editor in the frame. Artwork stays on their side; we store the design id for campaigns.

Your designs

{% for d in designs %} {% empty %} {% endfor %}
Name ID
{{ d.name }} {{ d.design_id }} Edit
No designs yet — create one above.
{% if active_design_id %}

Save for campaigns

{% csrf_token %}

Saved templates appear when composing a postcard campaign.

{% endif %} {% if saved_templates %}

Saved templates

{% for t in saved_templates %} {% endfor %}
NameDesign
{{ t.name }} {{ t.postcard_front.design_id }} Open
{% endif %}

{% if active_design_id %}PCM editor · design {{ active_design_id }}{% else %}Editor{% endif %}

{% if embed_url %} {% else %}
Create a design or pick one from the list to open the PCM editor here.
{% endif %}
{% endblock %}