{% extends "base.html" %} {% block title %}Shopping Cart - Project Mycelium{% endblock %} {% block head %} {% endblock %} {% block 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 ThreeFold 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 }}
Quantity
Unit: {{ item.unit_price }}
{{ item.total_price }}
{% endfor %}
Order Summary

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

Total {{ cart.total }}
{% if user_json %} Proceed to Checkout {% else %} {% endif %}
Secure Checkout
256-bit SSL encryption
You might also like
High-Performance Compute
Starting at $5/month
Storage Solutions
Starting at $2.50/month
Gateway Services
Starting at $1.50/month
{% endif %}
Loading...
{% endblock %} {% block scripts %} {% endblock %}