{% extends "base.html" %} {% block title %}Resell Zone{% endblock %} {% block content %} {% if ipc_error %}
Heads up: {{ ipc_error }}
{% endif %}

Resell Zone

Browse the latest listings from Resell. Sign in with Discord to unlock quick, secure Stripe checkouts.

{{ total_count }} item{{ 's' if total_count != 1 else '' }} available
{% if status_message %}
{{ status_level|capitalize }}: {{ status_message }} {% if checkout_session_id %}
Stripe session: {{ checkout_session_id }} {% endif %}
{% endif %} {% if not user %}

Sign in with Discord to purchase items.

{% endif %} {% if listings %}
{% for item in listings %}

{{ item.name }}

{{ item.price }}

{{ item.description }}

{% endfor %}
{% else %}
Empty

No listings yet

New stock will appear here as soon as the bot updates the database.

{% endif %} {% endblock %}