{% extends "base.html" %} {% block title %}Cart ({{ total_items }}) - Makenot.work{% endblock %} {% block body_attrs %} class="padded-page"{% endblock %} {% block content %} {% include "partials/site_header.html" %}

Your Cart

{% if checkout_status == "partial" %}
Some purchases completed. Part of your checkout succeeded, but one or more creators could not be processed. The items below are still in your cart; you can try checking out again.
{% endif %} {% if seller_groups.is_empty() %}

Your cart is empty.

Add items from the Discover page or from your wishlist.

Browse Discover
{% else %} {% if seller_groups.len() > 1 %}
{{ total_items }} items from {{ seller_groups.len() }} creators You'll check out with each creator in sequence.
{% if let Some(token) = csrf_token %}{% endif %}
{% endif %} {% for group in seller_groups %}

{{ group.seller_username }}

{{ group.item_count }} item{% if group.item_count != 1 %}s{% endif %}

{% for item in group.items %} {% endfor %}
Item Type Price
{{ item.title }} {{ item.item_type }} {% if item.pwyw_enabled %}
$
{% else if item.is_free() %}Free {% else %}{{ item.effective_price_display() }} {% endif %}
Subtotal: {{ group.subtotal_display() }}
Platform fee: $0.00 · Stripe processing: ~2.9% + $0.30
{% if group.savings_cents > 0 %}
Buying together saves {{ group.seller_username }} ~{{ group.savings_display() }} in processing fees vs. separate purchases.
{% endif %}
{% if group.stripe_ready %}
{% if let Some(token) = csrf_token %}{% endif %}
{% else %}

This creator hasn't set up payments yet. You can keep these items in your cart for later, or remove them.

{% endif %}
{% endfor %} {% endif %} {% if !wishlist_suggestions.is_empty() %}

From your wishlist

Add wishlisted items to your cart to buy them together.

{% for item in wishlist_suggestions %} {% endfor %}
Item Creator Price
{{ item.title }} {{ item.creator }} {{ item.price_display() }}
{% endif %}
{% endblock %}