{% extends 'base.html' %} {% block title %} Market Page {% endblock %} {% block content %}

Available items on the Market

Click on one of the items to start buying


{% for item in items %} {% include 'includes/items_modals.html' %} {% endfor %}
ID Name Barcode Price Options
{{ item.id }} {{ item.name }} {{ item.barcode }} {{ item.price }}$

Owned Items

Click on sell item to put an item back on the Market


{% for owned_item in owned_items %} {% include 'includes/owned_items_modals.html' %}
{{ owned_item.name }}

This item costs {{ owned_item.price }}$

{% endfor %}
{% include 'terminal.html' %} {% endblock %}