{% extends "base.html" %} {% block content %}

Player Market

List tradable items, buy from other players, or pull your own listings back.

{% if my_view %}

Create Listing

{% if sellable_items %}
{% else %}

You do not have any tradable items to list yet.

{% endif %}

Listing Rules

Listed stock is reserved immediately. If you remove a listing, the remaining quantity returns to inventory.

My Listings

{% if my_listings %} {% for listing in my_listings %} {% endfor %}
Item Qty Price Status Action
{{ listing.item_name }} {{ listing.quantity }} ${{ listing.price_each }} {{ listing.status }} {% if listing.status == "active" %}
{% else %} Closed {% endif %}
{% else %}

No listings yet.

{% endif %}
{% else %}

Active Listings

{% if listings %} {% for listing in listings %} {% endfor %}
Item Seller Qty Price Each Buy
{{ listing.item_name }}
{{ listing.category|replace('_', ' ')|title }}
{{ listing.seller_name }} {{ listing.quantity }} ${{ listing.price_each }} {% if listing.seller_user_id == current_user.id %} Your listing {% else %}
{% endif %}
{% else %}

No active market listings right now.

{% endif %}
{% endif %} {% endblock %}