{% extends "marketplace/layout.html" %} {% block title %}Shopping Cart - Mycelium Marketplace{% endblock %} {% block extra_css %} {% endblock %} {% block marketplace_content %}

Shopping Cart

{% if cart.is_empty %}

Your cart is empty

Looks like you haven't added any items to your cart yet. Browse our marketplace to find the perfect Mycelium resources for your needs.

Browse Marketplace
{% else %}
Cart Items ({{ cart.item_count }})
{% for item in cart.items %}
{% if item.product_category == "compute" %} {% elif item.product_category == "hardware" %} {% elif item.product_category == "gateways" %} {% elif item.product_category == "applications" %} {% elif item.product_category == "services" %} {% else %} {% endif %}
{{ item.product_name }}

{{ item.provider_name }}

{{ item.product_category|title }} {% if item.specifications %}
Specifications:
{% for key, value in item.specifications %} {{ key }}: {{ value }} {% endfor %}
{% endif %}
{{ item.quantity }}
Unit: {{ item.unit_price }}
{{ item.total_price }}
{% endfor %}
Order Summary

Subtotal ({{ cart.item_count }} items) {{ cart.subtotal }}
Estimated fees Calculated at checkout

Total {{ cart.total }}
{% if not user_json %}
Almost ready to checkout!
You'll need to log in or create an account to complete your purchase. Don't worry - your cart items will be saved!
{% endif %}
{% if user_json %} Proceed to Checkout {% else %} {% endif %}
Secure checkout with 256-bit SSL encryption
Recommended for you
{% for product_data in recommended_products %}
{{ product_data.product.name }}
{{ product_data.product.description }}
{{ product_data.formatted_price }}
{% endfor %}
{% endif %}
Loading...
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}