{% extends '__layout__.html' %} {% block title %}{{asset.name}}{% endblock %} {% block head %} {% endblock %} {% block content %}
< Return to Item Page

{{asset.name}}

{% with messages = get_flashed_messages() %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% if userassetnotforsalecount > 0: %}

Note: Once sold you will only recieve 70% of the actual price it was sold for.

{%if isOTPRequired: %}

As you have 2FA Enabled it is required to authorise any sale of your items

{%endif%}
{%endif%} {% if userassetforsalecount > 0: %}
Manage onsale items
{% for userasset in userassets %} {% if userasset.is_for_sale: %}
UAID: {{userasset.id}} | Serial: {% if asset.is_limited_unique: %}{{userasset.serial}}{%else%}N/A{%endif%}

Price: {{userasset.price}}

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