{% extends '__layout__.html' %} {% block title %}Admin{% endblock %} {% block head %} {% endblock %} {% block content %}
Back to Admin Panel

Item Release Pool

Next Drop Time: {{NextItemDropDatetime}}

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %} {% if category == 'error': %}
{{ message }}
{% endif %} {% if category == 'success': %}
{{ message }}
{% endif %} {% endfor %}
{% endif %} {% endwith %}
{% for Item in PlannedItems: %}
Name: {{Item.name}}

Description: {{Item.description}}

AssetId: {{Item.id}}

Robux Price: {{Item.robux_price}}

Tickets Price: {{Item.tickets_price}}

IsLimited: {{Item.is_limited}}

IsLimitedUnique: {{Item.is_limited_unique}}

Serial Count: {{Item.serial_count}}

Offsale After: {{Item.offsale_after}}

{% endfor%}
{% if len(PlannedItems) == 0 %}

No planned items

{% endif %}
{% endblock %}