{% extends "trading/base.html" %} {% load bootstrap4 %} {% block title %} {% with title="Create commodity" %} {{ block.super }} {% endwith %} {% endblock title %} {% block content %}

Create commodity

{% if object.can_create_commodity %}
{% csrf_token %} {% bootstrap_form form %}
Note: You have {{ object.unused_commodities|default:"unlimited" }} {% if object.unused_commodities %} commodit{{ object.unused_commodities|pluralize:"y,ies"}} {% else %} commodities {% endif %} available to create.
Cancel
{% if next %} {% endif %}
{% else %}

You have created the maximum number of commodities you are allowed to create.

Click here to view your settings.

{% endif %}
{% endblock %}